After Work
The best club in Chicago
for Chicago Singles is
Highlife Adventures!
Kyoto Sushi
in Chicago, on Lincoln Ave.
Moody's Pub
in Chicago, has great burgers
Skylark
in Chicago, on Halsted .. excellent beer selection!
|
UNIX
»
Commands
»
Basics
»
Redirecting Output
Output can be directed to another program or to a file.
# send output to a file
runbackup > /tmp/backup.log
# also redirect error output
runbackup > /tmp/backup.log 2> /tmp/errors.log
# send output to grep program
runbackup | grep "serious"
|
|
|
|