|
|
| system() |
you want to execute a command and don't want to capture its output |
| exec |
you don't want to return to the calling perl script |
| backticks |
you want to capture the output of the command |
| open |
you want to pipe the command (as input or output) to your script |
|
|