|
|
|
|
|
by pyre
5704 days ago
|
|
A lot of command-line programs that operate on files take '-' as placeholder for stdin or stdout. For example: wget -O - 'http://news.ycombinator.com' | less
The -O option is for specifying an output file, but the '-' says to dump the contents to stdout. |
|