M
Mark J Fenbers
In my Perl script, I want to launch a command and not wait for it to
return before moving on.
In a Bash script, I can do it this way:
/home/fenbers/myscript.bash &
In Perl, can I just do this:
`/home/fenbers/myscript.bash &`;
Or is there a better way of doing this?
Mark
return before moving on.
In a Bash script, I can do it this way:
/home/fenbers/myscript.bash &
In Perl, can I just do this:
`/home/fenbers/myscript.bash &`;
Or is there a better way of doing this?
Mark