Can someone please help me? In perl, what is the difference between:
exec "command";
and
system("command");
and
print `command`;
Are there other ways to run shell commands too?
|
1
|
Can someone please help me? In perl, what is the difference between:
and
and
Are there other ways to run shell commands too?
|
||
|
|
|
execexecutes a command and never returns.
It's like a If the command is not found execute returns false.
It never returns true, because if the command is found it never returns at all.
There is also no point in returning systemexecutes a command and your perl script is continued after the command has finished. The return value is the exit status of the command.
You can find documentation about it in backtickslike In contrary to Other waysWhat is missing from the above is a way to execute a command asynchronously.
That means your perl script and your command run simultaneously.
This can be accomplished with There are also several modules which can ease this tasks.
There is |
||||
|
|
|
Let me quote the manuals first:
In contrast to exec and system, backticks don't give you the return value but the collected STDOUT.
Alternatives:In more complex scenarios, where you want to fetch STDOUT, STDERR or the return code, you can use well known standard modules like IPC::Open2 and IPC::Open3. Example:
Finally, IPC::Run from the CPAN is also worth looking at⦠|
||||||||
|
|
|
In general I use
|
|
|
The difference between 'exec' and 'system' is that exec replaces your current program with 'command' and NEVER returns to your program. system, on the other hand, forks and runs 'command' and returns you the exit status of 'command' when it is done running. The back tick runs 'command' and then returns a string representing its standard out (whatever it would have printed to the screen) You can also use popen to run shell commands and I think that there is a shell module - 'use shell' that gives you transparent access to typical shell commands. Hope that clarifies it for you. |
||||||||||||||
|