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