2

In Unix, I have a process that I want to run using nohup. However this process will at some point wait at a prompt where I have to enter yes or no for it to continue. So far, in Unix I have been doing the following

nohup myprocess <<EOF
y
EOF

So I start the process 'myprocess' using nohup and pipe in a file with 'y' then close the file. The lines above are effectively three seperate commands - i.e. I hit enter on the first line in UNIX, then I get a prompt where I enter 'y' and then press enter to then finally type 'EOF' and hit return again.

I want to know execute this in Perl but I am not sure how I can execute this command as it is over three lines. I don't know if the following will work....

my $startprocess = `nohup myprocess <<EOF &
y
EOF
`

Please help - thank you!

brian d foy
  • 129,424
  • 31
  • 207
  • 592
sandeep
  • 21
  • 2

2 Answers2

5

I think your proposal will work as is. If not, try replacing the redirect with a pipe:

my $startprocess = `(echo "y" | nohup myprocess) &`;

Also, depending on WHY you are doing a nohup, please look at the following pure Perl daemonizing approach using Proc::Daemon : How can I run a Perl script as a system daemon in linux?

Community
  • 1
  • 1
DVK
  • 126,886
  • 32
  • 213
  • 327
2

Expect for interactive programs can be used as well.

Alan Haggai Alavi
  • 72,802
  • 19
  • 102
  • 127