-
Recent Posts
Recent Comments
- Alonzo Fretwell on Bash Scripting for Ubuntu: Episode 1
- W Alief on Specify A Command From History
- Alonzo Fretwell on About
- sivakumar on About
Archives
Categories
Meta
Blogroll
- Apache Licence 2.0
- BitTorrent
- Debian
- Electronic Frontier Foundation
- Free Software Definition
- Free Software Foundation (FSF)
- GNU (GNU Not UNIX)
- GPL (GNU Public Licence)
- Linux Hardware Compatibility List
- Linux Questions Community
- One Laptop per Child (OLPC)
- Open Source Initiative
- Qimo (Linux for Kids)
- Source Freedom
- Stephen Fry
- Subscribe To AlonzoFretwell.com
- The Shop at CafePress
- Ubuntu
- Ubuntu Forum
- Ubuntu Studio
- WordPress Planet
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 Bash, BSD, GNU/Linux, OS X Terminal, UNIX
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 Bash, BSD, GNU/Linux, OS X Terminal, UNIX
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 Bash, BSD, GNU/Linux, OS X Terminal, UNIX
Leave a comment