I do gw -rewalk="every 1am"
and then i do control-Z so i can continue working on telnet - and as soon
as i close my telnet connection - - it says - there are stopped jobs...
then when i close it.. after i get back on - - - the operation quit.
How can I keep the schedule running?????
Yes; Ctrl-Z will stop a process running in the foreground, and the
shell is warning you on exit that you haven't told the process to
continue. You should run the process in the background and with nohup,
rather than using Ctrl-Z:
nohup gw -rewalk="every 1am" &
See your man pages on nohup and shell job control for more information.