X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/9e6e9dbe211ccf9453354ffa9178814c0f549ba0..36715e604fe79a20de2969ef9266540dac88d837:/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}' }