in reply to Re: Unsuccessfully passing arguments to a bash command
in thread Unsuccessfully passing arguments to a bash command
The output is#!/usr/bin/perl my $cmd = qq|/bin/bash -ic untouchable john mike bill|; print $cmd; system ($cmd);
Somehow the arguments john mike bill are getting lost./bin/bash -ic untouchable john mike billStarting... done!
|
|---|
| 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 |