Top "Nohup" questions

nohup is a POSIX command to ignore the HUP (hangup) signal, enabling the command to keep running after the user who issues the command has logged out.

There is any way to run processes in the background?

There is any command line or .NET method that runs a process in the background hiding any window it tries …

c# .net nohup
Run SCP in background and monitor the progress

I'm running an scp command in the background: nohup scp file.gz root@target-host:/root/ > nohup.out 2>&1 …

linux scp nohup
How to constantly run Python script in the background on Windows?

I have created a script that moves files from one folder to another. But since the original folder is the …

python background-process nohup
nohup: run PHP process in background

i try to run php processes in background and start this from an php file. Some informations: PHP Version 5.2.17, php …

php process background cron nohup
nohup vs screen -- which is better for long running process?

Background: I have a long running script that makes database schema changes that has output I would want to check …

terminal gnu-screen nohup
Call a function using nohup

I am trying to call a function using nohup like this: function1(){ while true do echo "function1" sleep 1 done } nohup …

linux bash function shell nohup
Shell_exec php with nohup

I think there are tons of similar posts but I haven't yet found a solution after searching around. Basically, I'm …

php exec shellexecute shell-exec nohup
Running process in background after closing terminal

I am trying to run a script in the background even after closing the terminal. I have searched and searched …

macos bash daemon nohup
running nohup command on script that takes all parameters

I am trying to run a script with nohup, but the command happens to take an entire line of parameters …

bash nohup
Removal of the nohup -file during the execution

I did the following: nohup find / & rm nohup.out Oddly, the nohup -command continued to run. I awaited for …

nohup