scratch/content/html/en/blog/2009-10-launch-daemon-from-command-line.md
2010-03-30 16:39:12 +02:00

1 KiB

isHidden menupriority kind created_at title multiTitle multiDescription tags
false 1 article 2009-10-23T10:53:16+02:00 launch daemon from command line
fr en
lancer un démon en ligne de commande launch daemon from command line
fr en
Pour lancer une commande qui continue de tourner après la fermeture du terminal il suffit de lancer la commande <code>nohup cmd &</code> To launch a command which will continu to run after the terminal is closed you only have to use <code>nohup cmd &</code>
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.