Given a file containing the following numbers:
+1.4
+12.3
-1.0
-4.2
How would one sort it with GNU sort in numerical order?
Using -n
or -h
doesn't seem to work: the +
character is not being treated correctly?
$ echo "+1.4\n+12.3\n-4.2\n-1.0" | sort -h
-4.2
-1.0
+12.3
+1.4
Thanks.
In bash :
should do the trick.
-e
withecho
interprets escape sequences.-g
withsort
compares according to general numerical value.Sample Output
Sidenote: In some shells,
echo -e
is the default behavior. Check [ this ] ...