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