[email protected] (Jan Schaumann) writes: >How does '/bin/sh -c' with multiple args actually >work?
The option '-c' takes a single argument (command_string), which is split into words like input from stdin by an interactive shell. The first word is the command name, the next words are the arguments. The SYNOPSIS on the man page seems to wrong, or at least, misleading.
