Revision history of "Aho Weinberger Kernighan"

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • curprev 13:43, 21 August 2023Xbl talk contribs 1,131 bytes +2 →‎Use
  • curprev 13:42, 21 August 2023Xbl talk contribs 1,129 bytes +20
  • curprev 13:26, 21 August 2023Xbl talk contribs 1,109 bytes +1,109 Created page with "= awk = is a full scripting language, as well as a complete text manipulation toolkit for the command line.</br> == Use == <code>who | awk '{print $1}'</code> print the first field of every line from the who command</br> <code>who | awk '{print $1,$4}'</code> print the first and fourth field of every line from the who command</br> <code>who | awk '{print $NF}'</code> print the last field (NF=Number of Fields) of every line from the who command</br> </br> <code>date | a..."