Help for this page

Select Code to Download


  1. or download this
    @cmd = (
      '/usr/bin/perl', -e => quote_cmd($script)
    );
    
  2. or download this
    @cmd = ('perl', '-e', $script);
    # pick which one you need:
    system(@cmd);
    system('ssh', $host, quote_cmd(@cmd));
    system('ssh', $proxy, quote_cmd('ssh', $host, quote_cmd(@cmd)));
    # etc., etc.,