Sort by column
Published: Sunday, Nov 22, 2009 Last modified: Thursday, Nov 14, 2024
Sort by third column using semi-colon as a delimiter:
wget http://weather.dabase.com/3day.txt -O /dev/stdout | sort -n -t ";" -k 3
-n
is for numeric sort.
Sort by third column using semi-colon as a delimiter:
wget http://weather.dabase.com/3day.txt -O /dev/stdout | sort -n -t ";" -k 3
-n
is for numeric sort.