summaryrefslogtreecommitdiffstats
path: root/lib.sh
blob: 08da9933bb240cb9d0dc838922068e0df9f81b3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#
# Library of functions
#

file_hash()
{
   sha256sum $1 | awk '{ print $1 }'
}

short_hash()
{
   awk "BEGIN { print substr(\"$1\", 1, 7) }"
}