Running Commands in the Background

If it's gonna take a long time, put it in "the background" with &.

Example:

cut -f10 *.log | sort | uniq -c | sort -nr | mail "me@somewhere.com" &

Task:



Previous - Creating Pipelines of Commands

Next - Opening Files from the Command Line

Home