Help for this page

Select Code to Download


  1. or download this
        print "Preforming sha1 on $file";
        system( "sha1sum $file > data" );
    
  2. or download this
        Preforming sha1 on test1.dat
    
  3. or download this
        my $systemCommand = "sha1sum $file > data";
        print "\$systemCommand = [$systemCommand]\n";
        system( $systemCommand );
    
  4. or download this
        $systemCommand = [sha1sum test.dat
         > data]