in reply to Re: Unsuccessfully passing arguments to a bash command
in thread Unsuccessfully passing arguments to a bash command

I've tried this. But even if I write
#!/usr/bin/perl my $cmd = qq|/bin/bash -ic untouchable john mike bill|; print $cmd; system ($cmd);
The output is
/bin/bash -ic untouchable john mike billStarting... done!
Somehow the arguments john mike bill are getting lost.

Replies are listed 'Best First'.
Re^3: Unsuccessfully passing arguments to a bash command
by Anonymous Monk on Jun 15, 2013 at 20:59 UTC

    Where john mike bill are what?