Help for this page

Select Code to Download


  1. or download this
    # string
    "system(/usr/bin/perl /root/test.pl)"
    
    # program
    system "/usr/bin/perl /root/test.pl";
    
  2. or download this
    perl -e 'system "/usr/bin/perl /root/test.pl"'
    
  3. or download this
    perl -e 'system "/usr/bin/perl","/root/test.pl"'