| 123456789101112131415161718192021222324252627282930 | #!/bin/shset -edo_hash() {    HASH_NAME=$1    HASH_CMD=$2    echo "${HASH_NAME}:"    for f in $(find -type f); do        f=$(echo $f | cut -c3-) # remove ./ prefix        if [ "$f" = "Release" ]; then            continue        fi        echo " $(${HASH_CMD} ${f}  | cut -d" " -f1) $(wc -c $f)"    done}cat << EOFOrigin: Gravitl RepositoryLabel: netclientSuite: stableCodename: stableVersion: VERSIONArchitectures: amd64 arm64 Components: mainDescription: a platform for modern, blazing fast virtual networks Date: $(date -Ru)EOFdo_hash "MD5Sum" "md5sum"do_hash "SHA1" "sha1sum"do_hash "SHA256" "sha256sum"
 |