I have a file called secure.txt in c:\temp. I want to run a Perl command from the command line to print the SHA1 hash of secure.txt. I'm using ActivePerl 5.8.2. I have not used Perl before, but it's the most convenient option available right now.
The command-line options to Perl are documented in perlrun. Going from left to right in the above command:
The funny-looking diamond is a special case of Perl's readline operator:
Because If you'd like to have this code in a convenient utility, say
This will compute a digest for each file named on the command line, and the output format is compatible with that of the Unix
You didn't say whether you have Cygwin installed, but if you do, Update: The following also works on modern Perl 5.10+:
|
|||||||||||||||||
|
|
Try the Digest::SHA module.
|
|||
|
|
|
Use
Edit: Why the down vote? Does this code not work? Is this not an appropriate solution to the problem? |
|||||||||||||||||
|