sort Flashcards
1
Q
sort using numeric keys
A
sort -n
2
Q
sort using n-th field, counting from zero
A
sort +n
3
Q
sort in reverse
A
sort -r
4
Q
check that input is sorted according to the other options specified on the command line
A
sort -c