Help for this page

Select Code to Download


  1. or download this
    while(<>) {
            chomp;
    ...
            my $exec = `md5sum $filename`;
            print $exec ."\n";
    }
    
  2. or download this
    find /tmp/ -type f | ./hash.pl <br>
    /tmp/File Wasn\'t found.txt <br>
    ...
    md5sum: Wasn't: No such file or directory<br>
    md5sum: found.txt: No such file or directory<br>
    <br>
    
  3. or download this
    while(<>) {
            chomp;
    ...
            my $exec = `md5sum '$filename'`;
            print $exec ."\n";
    }
    
  4. or download this
    find /tmp/ -type f | ./hash.pl
    /tmp/File Wasn\'t found.txt
    sh: Syntax error: Unterminated quoted string