From fef278a548b3a72f878a085d888d4852ef49cfd1 Mon Sep 17 00:00:00 2001 From: nbd Date: Tue, 2 Sep 2008 10:57:51 +0000 Subject: [PATCH] clean up md5s() shell function git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12493 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- include/shell.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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}' } -- 2.20.1