From 80b48702e8c7cd3fc1cba0a16d4859e3860f1aea Mon Sep 17 00:00:00 2001 From: fabs Date: Mon, 25 Oct 2021 23:17:37 +0200 Subject: [PATCH] use sha256sum for shasum --- bashutils.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bashutils.inc b/bashutils.inc index 7f8002a..78e89e1 100644 --- a/bashutils.inc +++ b/bashutils.inc @@ -1,7 +1,7 @@ #!/hint/bash function shasum { - command shasum <<<"$1" | awk '{ print $1 }' + command sha256sum <<<"$1" | awk '{ print $1 }' } # once