in reply to Re: Re^3: exec()ed process dont write to std(?:err|out) (system)
in thread exec()ed process dont write to std(?:err|out)
start "skimFundsFromTransactions.pl" perl -S skimFundsFromTransactions +.pl CreditCard 0.002% $100,000
Go to "task manager", select the "Applications" tab, right-click on the application titled "skimFundsFromTransactions.pl", select "Go to process" from the resulting pop-up menu, note that a specific instance of perl.exe is now highlighted in the "Processes" tab.
Alternately, if you write your little trick or something similar using a *.bat or *.cmd instead of Perl, then you don't need to have the intermediary instance of perl.exe (which will clutter your taskmanager display). You can even steal a trick I've used several times of having a *.bat that is mostly a Perl script but that writes the final command to be run afters its "__END__" and ":endofperl" lines, to get the same effect while not having to know as much about *.bat/*.cmd programming.
- tye
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: exec()ed process dont write to std(?:err|out) (system)
by demerphq (Chancellor) on Apr 13, 2004 at 16:07 UTC | |
by bbfu (Curate) on Apr 13, 2004 at 19:06 UTC |