01
Shell Linux: Sort on 2nd column with tab separated content
sort -t t’ -n -k2
The blog of Quentin Adt
sort -t t’ -n -k2
awk -F’t’ ‘{a+=$2}END{printf “%in”,a}’
Do you often need to quickly retrieve output files from scripts executed over SSH? Something like this if you have the file name in the … [READ MORE]