in reply to Unsuccessfully passing arguments to a bash command

this does it for me:

perl -e'print qx(bash -ic "untouchable john mike bill");'

So it was about the right quoting to protect it from the shell.

Cheers, Sören

(hooked on the Perl Programming language)

Replies are listed 'Best First'.
Re^2: Unsuccessfully passing arguments to a bash command
by zapatafa (Initiate) on Jun 15, 2013 at 21:48 UTC
    Works perfectly. Thank you.