From: Felix Fietkau Date: Tue, 2 Sep 2008 10:57:51 +0000 (+0000) Subject: clean up md5s() shell function X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fwigyori.git;a=commitdiff_plain;h=6f16d961a588782f22f54775194a1e66a1ffeb53 clean up md5s() shell function SVN-Revision: 12493 --- diff --git a/include/shell.sh b/include/shell.sh index f6be6c526f..634beedcef 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}' }