better link anchors

This commit is contained in:
ston1th 2016-11-20 02:14:46 +01:00
commit 1d5dd87230
8 changed files with 26 additions and 13 deletions

2
sri.sh
View file

@ -5,6 +5,8 @@ FILES="*.css *.js *.ico"
echo "SRI (subresource integrity) hashes"
cd ${DIR}
for f in $(ls ${FILES} 2>/dev/null); do
grep '^' ${f} | head -c-1 - > tmp
mv tmp ${f}
printf "%13s: " ${f}
echo "${HASH}-$(cat ${f}|openssl dgst -${HASH} -binary|openssl enc -base64 -A)"
done