Pergunta de entrevista da empresa R Systems

What is Awk command and how can I use it?

Resposta da entrevista

Sigiloso

14 de abr. de 2024

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.