scratch/content/html/en/blog/2009-10-launch-daemon-from-command-line.md
2010-05-09 14:53:46 +02:00

682 B

isHidden menupriority kind created_at title author_name author_uri tags
false 1 article 2009-10-23T10:53:16+02:00 launch daemon from command line Yann Esposito yannesposito.com
zsh
shell
script
tip

Here is a tip, I don't know why, but I almost always forgot how to do that.

When you want to launch a command and this command should not be killed after you close your terminal. Here is how to accomplish that from command line:

nohup cmd & where cmd is your command.

I let this command here for me and I wish it could also help someone.