part 1
ps -e | sort -k 1 -nr
What is the interpretation of the above command? I want to understand the role of -nr. It is not clearly given the man pages of sort.
part 2
When you open the man page of head, one of the options states:
-c,--bytes=[-]Kprint the first K bytes of each file; with the leading `-', print all but the last K bytes of each file
How to interpret the -c, --bytes=[-]K?