Can't find what you're looking for? Use of one of the search websites below …

Home*nixos commandsnohup

nohup

Published on Wednesday, August 15, 2007

man: NAME: nohup – run a command immune to hangups

nohup and SQL*Plus

Nohup and SQL*Plus can be easily used together:

$ nohup sqlplus -s remi/remivisser @update.sql &
[4]     14433
$ Sending output to nohup.out
 
$
$
Prevent password from being displayed in the ps list
$ export password=remivisser
$ nohup sqlplus -s remi/${password} @update.sql &
[8]     16768
$ Sending output to nohup.out
$
$
 

Leave a Reply