aboutsummaryrefslogtreecommitdiffstats
path: root/include/shell.sh
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2008-09-02 10:57:51 +0000
committerFelix Fietkau <nbd@openwrt.org>2008-09-02 10:57:51 +0000
commit64d00cee6fd05da69a15b370f2f681531ca18e58 (patch)
tree2c27c799ccc6a4989110ce53dc14e3a0c326d92f /include/shell.sh
parent78aec4b21df1ec5dc065a803b017a35fd2212e3a (diff)
downloadmaster-187ad058-64d00cee6fd05da69a15b370f2f681531ca18e58.tar.gz
master-187ad058-64d00cee6fd05da69a15b370f2f681531ca18e58.tar.bz2
master-187ad058-64d00cee6fd05da69a15b370f2f681531ca18e58.zip
clean up md5s() shell function
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12493 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include/shell.sh')
-rw-r--r--include/shell.sh5
1 files changed, 4 insertions, 1 deletions
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}'
}