tags:

views:

748

answers:

1

The "disown" command works in bash, but not in ksh.

If I have started a process in ksh, how can I "disown" it, so I can exit my shell. (I know about nohup, but the process has already started!)

A: 

ksh93 supports the disown command. Also, some versions of nohup allow you to specify a process id with the -p option, instead of a command.

bobmcn