X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;ds=sidebyside;f=include%2Fshell.sh;h=634beedcef3e17d351f440a765c251ae16f50737;hb=0dd82ce32b59116e1fe26ab6273d436269b7ee3e;hp=db4100326277cce3c16e7f9cbb31b57f5bd1c591;hpb=90eeb3efd77c462a47039eb2c3800432eb27faad;p=openwrt%2Fsvn-archive%2Farchive.git diff --git a/include/shell.sh b/include/shell.sh index db41003262..634beedcef 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}' }