Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
cat cmd*log

# or, for a listing ordered by node name (the 11th field)
cat cmd*log | sort -k 11,11

The vertical bar ( | ) above is the pipe operator( | ), which connects one program's standard output to the next program's standard input.

...