Created
June 19, 2021 08:41
-
-
Save beamzer/54fcb61f87b85c0654aa2ce2d465ac2d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/opt/local/bin/perl -w | |
use strict; | |
use Digest::file qw(digest_file_hex); | |
for (@ARGV) { | |
print digest_file_hex($_, "SHA-256"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment