-
Recent Posts
Recent Comments
- 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)
- Stephen Fry
- Subscribe To AlonzoFretwell.com
- The Shop at CafePress
- Ubuntu
- Ubuntu Forum
- Ubuntu Studio
- WordPress Planet
Monthly Archives: May 2010
Listing Jobs
List jobs in the current shell by typing jobs. Example… List your jobs… [af@llewterf ~]$ jobs <Enter> [1]- Stopped vi [2]+ Stopped vi [af@llewterf ~]$ This example shows two jobs. Both jobs are vi. The + indicates the most recent job while the … Continue reading
Posted in BSD, Bash, GNU/Linux, OS X Termial, UNIX
Tagged Bash, BSD, GNU/Linux, OS X Terminal, UNIX Leave a comment
Move A Job Into The Foreground
Use fg to move a job from the background into the the foreground. By default fg works on the most recent background job. Example… Bring the most recent background job into the foreground… $ fg <Enter> To specifiy a job to … Continue reading
Posted in BSD, Bash, GNU/Linux, OS X Termial, UNIX
Tagged Bash, BSD, GNU/Linux, OS X Terminal, UNIX Leave a comment
Move A Job Into The Background
Jobs run in the foreground unless otherwise specified. To launch a job in the background end the command line with an ampersand (&). Example… Run apropos shell > shell-commands in the background… af@gaga:~$ apropos shell > shell-commands & <Enter> [1] 18721 af@gaga:~$ … Continue reading
Posted in BSD, Bash, GNU/Linux, OS X Termial, UNIX
Tagged Bash, BSD, GNU/Linux, OS X Terminal, UNIX Leave a comment