in reply to Unsuccessfully passing arguments to a bash command

Try ;
#!/usr/bin/perl my @args = ("bash","-ic","untouchable john mike bill"); system(@args);
poj