Hello folks, I have a question:
I have a perl script that takes a few lines of text and splices them into an executable Unix command. It does so by writing these lines into a file called change.tmp which is created at runtime.
However, I can't seem to execute change.tmp using
system "change.tmp";
in the perl script. I can execute change.tmp from the command line, and it works there, but I'd like to get it working in the script so that I can delete change.tmp after the script finishes.
Any help would be appriciated.
Thanks,
Meatsim
I have a perl script that takes a few lines of text and splices them into an executable Unix command. It does so by writing these lines into a file called change.tmp which is created at runtime.
However, I can't seem to execute change.tmp using
system "change.tmp";
in the perl script. I can execute change.tmp from the command line, and it works there, but I'd like to get it working in the script so that I can delete change.tmp after the script finishes.
Any help would be appriciated.
Thanks,
Meatsim