Help for this page

Select Code to Download


  1. or download this
    unless (system('ssh', $host, 'test -s $file') == 0) {
    
  2. or download this
    system('ssh', $host, "echo $product > $file");
    
  3. or download this
    system('ssh', $host, "if [ ! -s $file ]; then echo $product > $file; f
    +i");