I would like to run some command (e.g. command) using perl\'s system(). Suppose command is run from the shell like this:
command
system()
my @args = ( "command", "--arg1=arg1", "--arg2=arg2", "-arg3", "-arg4" ); system(@args);