What is Awk command and how can I use it?
Sigiloso
Awk can be used for filtering column based data, seperating columns from data. It can also be used to do some logical operations. Example, if [[ echo "${firstNum}" "${secondNum}" | awk "print {$0 > $1}" == 0 ]] above can help you do a logical comparision.