Last Updated: February 25, 2016
·
536
· kewitz

Running in background.

If you want to run in the current session and still read the stdout.

./script &

If you want to run in the current session without stdout.

./script &>/dev/nul&

And if you want to run in the background and be able to logout from the current session without your script or program close, you can use nohup

nohup ./script &