Help for this page

Select Code to Download


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