X-Git-Url: http://git.ozo.com/?p=openwrt-10.03%2F.git;a=blobdiff_plain;f=include%2Fshell.sh;h=634beedcef3e17d351f440a765c251ae16f50737;hp=db4100326277cce3c16e7f9cbb31b57f5bd1c591;hb=391eb6e69c09d9f107b8c30a91c63dce37820043;hpb=c3241962560c5e114f3bbc3e7f1a52917730993e 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}' }