in reply to difference bteween using back quote and sytem command in perl programming
See the documentation for system and the qx// operator in perlop (search for qx/STRING/ in the 'Regexp Quote-Like Operators' section. The major difference is that backticks allow you to capture the output from the command whereas system is a "launch and forget" process.
|
|---|