in reply to
backtick question
Hi
The
system ("cat");
[download]
command actually creates a child process (a shell) and then calls the exec function , while
exec "cat";
[download]
by itself executes the string in the current shell , I think the backtick has the same difference with system
Comment on
Re: backtick question
Select
or
Download
Code
In Section
Seekers of Perl Wisdom