Help for this page

Select Code to Download


  1. or download this
    my $file="camel.out";
    system("cat camel.txt >$file");
    
  2. or download this
    my @output=split `cat camel.txt`;
    open FILE ">camel.out" or die "My camel is sick: $!\n";
    print FILE for @output;
    # This code is untested, so beware