X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=include%2Fshell.sh;h=6389304c24bdd7f798b3a71f957dbfaad9cfa3e5;hb=653cb2594d34439f292cf973747ee84bb266ca9e;hp=f6be6c526f26fb489cc660d7201bce3c3a1117b7;hpb=7bdbd73b2a6794ed62ace6cb89070168ae8fd19a;p=librecmc%2Flibrecmc.git diff --git a/include/shell.sh b/include/shell.sh index f6be6c526f..6389304c24 100644 --- a/include/shell.sh +++ b/include/shell.sh @@ -30,5 +30,8 @@ trapret() {( )} md5s() { - which md5sum 2>&1 >/dev/null && md5sum "$@" | awk '{print $1}' || md5 "$@" + cat "$@" | ( + md5sum 2>/dev/null || + md5 + ) | awk '{print $1}' }