- or download this
system(q{bash -ic 'untouchable john mike bill'});
- or download this
system('bash', '-ic', 'untouchable john mike bill');
- or download this
use String::ShellQuote qw( shell_quote );
system('bash', '-ic', shell_quote('untouchable', @names));
- or download this
system('bash', '-ic', 'untouchable "$@"', '-', @names);