Help for this page

Select Code to Download


  1. or download this
    system("cp", "file1", "file2") and die "...";  # system returns false 
    +upon success, not true
    
  2. or download this
    print COPY "file1 file2" || die("Could not print to COPY: $!");
    
  3. or download this
    print COPY ("file1 file2" || die("..."));