I have never worked in programming languages ββbefore. I study the architecture of C and unix, citing online links. I got a little exercise to write an awk script to analyze the output of the ps command. please help and please provide me the names of the best books for C and awk scripts.
Suppose you want to list only the command column (8th column) from the output of ps -ef , you can do:
ps -ef
ps -ef | awk '{print $8}'