aboutsummaryrefslogtreecommitdiffstats
path: root/test/sortfor.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/sortfor.awk')
-rw-r--r--test/sortfor.awk4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sortfor.awk b/test/sortfor.awk
index 611eca64..922b5e85 100644
--- a/test/sortfor.awk
+++ b/test/sortfor.awk
@@ -1,9 +1,9 @@
{ a[$0]++ }
END {
- PROCINFO["sorted_in"] = "ascending"
+ PROCINFO["sorted_in"] = "@ind_str_asc"
for (i in a)
print i
- PROCINFO["sorted_in"] = "descending"
+ PROCINFO["sorted_in"] = "@ind_str_desc"
for (i in a)
print i
}