Normally stdin is either undefined or fed from /dev/null in a cron job.
This means that when your backup program prompts for tape 2, it will
probably nuke and die.
What I can't understand is why you feel the need to make it a cron process.
It won't finish automatically anyway; you'll have to deal with tape 2 when
you come in in the morning. You have a number of virtual consoles available
on your system console (at least with SCO - not sure about others).
Quote:> Okay, here goes. I would like to start my backups via cron around 4:00am.
> This is no big deal, but the problem is that my backups will request more
> than one tape. Obviously, if I start my processes in the foreground (from
a
> command line), when the next EOT is reached and another tape is
requested, I
> get a nice message stating to insert another tape and hit Enter.
> If this same process is started in the background, lets say by cron, I
will
> never see the message asking for another tape - unless I look at my log
file.
> But even still, I can change tapes and hot Enter until I'm blue in the
face,
> but the backup will just hang.
> Is there a way to start this backup process via cron, but then somehow
bring
> the proccess into the foreground so that user input will be recongnized?
> Any suggestions will be appreciated.