in reply to Re^2: Is it possible to determine last executed command line?
in thread Is it possible to determine last executed command line?
you might consider modifying retcode_full_text to take the last command as an argument, and usingsystem( "....." ); retcode_full_text();
sub my_system { my ( $cmd ) = @_; system( $cmd ); retcode_full_text( $cmd ); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Is it possible to determine last executed command line?
by graff (Chancellor) on Dec 04, 2007 at 00:42 UTC | |
by ikegami (Patriarch) on Dec 04, 2007 at 01:38 UTC | |
|
Re^4: Is it possible to determine last executed command line?
by sgifford (Prior) on Dec 04, 2007 at 06:21 UTC |