in reply to Re^2: Safely passing CGI form data to a shell command
in thread Safely passing CGI form data to a shell command
Most Unix programs allow the double dash ('--') to be used to stop option parsing, so instead of ...
... it's better to use ...system 'foo', $arg;
system 'foo', '--', $arg;
|
|---|