
nohup
List of commands for nohup:
-
nohup:ai:07102 Execute the script but place it into the background. You will have to press Enter when your prompt seems to hang to return to your prompt.$ nohup ./script.sh &try on your machineexplain this command
-
nohup:ai:c584c keep a process running until proper exit$ nohup your_process &try on your machineexplain this command
-
nohup:tldr:407c7 nohup: Launch `nohup` in background mode.$ nohup ${command} ${argument1 argument2 ---} &try on your machineexplain this command
-
nohup:tldr:44966 nohup: Run a process that can live beyond the terminal.$ nohup ${command} ${argument1 argument2 ---}try on your machineexplain this command
-
nohup:tldr:49a0f nohup: Run a process and write the output to a specific file.$ nohup ${command} ${argument1 argument2 ---} > ${path-to-output_file} &try on your machineexplain this command
-
nohup:tldr:60e71 nohup: Run a shell script that can live beyond the terminal.$ nohup ${path-to-script-sh} &try on your machineexplain this command