Sracok, alap UNIX:
Folyamat hatterben futtatasa:
process &
man bash:
" If a command is terminated by the control operator &, the shell exe-
cutes the command in the background in a subshell. The shell does not
wait for the command to finish, and the return status is 0. Commands
separated by a ; are executed sequentially; the shell waits for each
command to terminate in turn. The return status is the exit status of
the last command executed."
(De ezt megcsinalha a csh, zsh, ksh, barmi)
Vagy, ha nem akarod, hogy a hangupra halgasson:
nohup process
man nohup:
" The nohup utility invokes utility with its arguments and at this time
sets the signal SIGHUP to be ignored. If the standard output is a termi-
nal, the standard output is appended to the file nohup.out in the current
directory. If standard error is a terminal, it is directed to the same
place as the standard output."