Suppose the call was
/usr/local/bin/perl verify.pl 1 3 de# > result.log
Inside verify.pl I want to capture the whole call above and append it to a log file for tracking purposes.
How can I capture the whole call as it is?
|
Suppose the call was
Inside How can I capture the whole call as it is? |
||||
|
|
|
There is way (at least on unix-systems) to get whole command line:
e: Cleaner way using PID (courtesy of Nathan Fellman):
|
|||||||||||||
|
|
or, more elegantly (thanks FMc):
I don't however, know how to capture the redirection ( |
|||||||||||||||||||
|
|
A Quick Solution:
Try to save the following code as
|
||||
|
|