Quote:
|
how to get output of the script to a file somewhere
|
$ command > filename
Quote:
|
so i cannot tell weather the script completed or not
|
$ nohup command &
nohup tells it to keep running even if the tty dies (and it automatically sends output to a file called nohup.out)
& brings you back to the prompt while it runs in the background