After Work
Old Town Social
in Chicago, on North Ave, near Cleveland. Great selection of tap beers.
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
»
Running a process, spawning a process
This section briefly describes how to start a process from the command line.
Glossary:
& - run in background
nohup (No Hang Up) - lets process continue, even if session is disconnected
# run a script, in the background
runbackup &
# run a script, allow it to continue after logging off
nohup runbackup &
# Here nohup.out will still be created, but any output will
# show up in test70.log. Errors will appear in nohup.out.
nohup /export/spare/hmc/scripts/test70 > test70.log &
# Here nohup.out will not be created; any output will
# show up in test70.log. Errors will appear test70.log also !
nohup /export/spare/hmc/scripts/test70 > test70.log 2>&1 &
|
|
|
Get the latest Rocket99 news and tech tips via
|