X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/9e6e9dbe211ccf9453354ffa9178814c0f549ba0..fcc9a3db52c174448857167fe8c89d1a0f84413c:/include/shell.sh diff --git a/include/shell.sh b/include/shell.sh index f6be6c526..634beedce 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}' }