2025-11-05 22:17:50 +03:00

12 lines
174 B
Bash
Executable File

#!/bin/sh
set -eu
if [ -n "${2+x}" ]; then
shasum -a 256 "${@}"
elif [ -n "${1+x}" ]; then
shasum -a 256 "${@}" | head -c 64
else
shasum -a 256 | head -c 64
fi