X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/c3241962560c5e114f3bbc3e7f1a52917730993e..7ec88f88f4c65a22b3b7e32ef87cb42dcb32a6fb:/include/shell.sh diff --git a/include/shell.sh b/include/shell.sh index db4100326..634beedce 100644 --- a/include/shell.sh +++ b/include/shell.sh @@ -30,5 +30,8 @@ trapret() {( )} md5s() { - which md5sum 2>&- >&- && md5sum "$@" | awk '{print $1}' || md5 "$@" + cat "$@" | ( + md5sum 2>/dev/null || + md5 + ) | awk '{print $1}' }