Skip to content

Instantly share code, notes, and snippets.

@apetrone
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save apetrone/c30076ed13dcbd406a98 to your computer and use it in GitHub Desktop.
Save apetrone/c30076ed13dcbd406a98 to your computer and use it in GitHub Desktop.
*nix tips
# We don't need dos2unix:
cat foo | col -b > foo2
# force process to background without killing it in a terminal.
$ sleep 1000
^Z
[1]+ Stopped sleep 1000
$ bg
$ disown
$ exit
# returning back to check stdout
http://serverfault.com/questions/55880/moving-an-already-running-process-to-screen
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment