Last active
August 29, 2015 14:06
-
-
Save apetrone/c30076ed13dcbd406a98 to your computer and use it in GitHub Desktop.
*nix tips
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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