Monthly Archives: May 2010

Alonzo Fretwell Articles in May, 2010, Page 2

Suspending Jobs

Suspend or stop a foreground job with <Ctrl>-<Z>. This is useful if one wants to carry out other tasks in the shell and resume the current job later. The job will stop until one moves it back into the foreground … Continue reading

Posted in BSD, Bash, GNU/Linux, UNIX | Tagged , , , , | Leave a comment

Jobs

Processes running in a shell are called jobs. One may have many jobs running from a single shell prompt. Jobs reading standard input and writing standard output are called foreground jobs; others are said to be running in the background. Each … Continue reading

Posted in BSD, Bash, GNU/Linux, UNIX | Tagged , , , , | Leave a comment

Redirection to /dev/null

/dev/null is a special file called a null device. It contents are null. One can think of it as a sort of black hole whose constituents can never be reached or viewed. Subsequently redirect anything to /dev/null that you don’t … Continue reading

Posted in BSD, Bash, GNU/Linux, UNIX | Tagged , , , , | Leave a comment