Skip to content

Instantly share code, notes, and snippets.

@joar
Created April 18, 2011 20:51
Show Gist options
  • Save joar/926147 to your computer and use it in GitHub Desktop.
Save joar/926147 to your computer and use it in GitHub Desktop.
jwandborg@sophie:~$ dropbox & # Starts the progress, sends it to the background immediately, the process is running.
[1] 24055
jwandborg@sophie:~$ fg # Brings the latest process in the background process stack to the foreground (you can also use `fg <number>` to choose another than the latest)
dropbox
^Z # Suspends the process, the process is now in the background, but is not running.
[1]+ Stopped dropbox
jwandborg@sophie:~$ bg # Sends the latest suspended process to the background, the process is now running in the background.
[1]+ dropbox &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment