mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-27 16:43:01 +00:00
10 lines
119 B
Bash
10 lines
119 B
Bash
#!/bin/sh
|
|
# print out the hash values
|
|
#
|
|
|
|
for i in $*
|
|
do
|
|
h=`openssl x509 -hash -noout -in $i`
|
|
echo "$h.0 => $i"
|
|
done
|