projects
/
openwrt
/
staging
/
hauke.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
799e7a8
)
clean up md5s() shell function
author
Felix Fietkau
<nbd@openwrt.org>
Tue, 2 Sep 2008 10:57:51 +0000
(10:57 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Tue, 2 Sep 2008 10:57:51 +0000
(10:57 +0000)
SVN-Revision: 12493
include/shell.sh
patch
|
blob
|
history
diff --git
a/include/shell.sh
b/include/shell.sh
index f6be6c526f26fb489cc660d7201bce3c3a1117b7..634beedcef3e17d351f440a765c251ae16f50737 100644
(file)
--- 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}'
}