projects
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5ef8ada
)
clean up md5s() shell function
author
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 2 Sep 2008 10:57:51 +0000
(10:57 +0000)
committer
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 2 Sep 2008 10:57:51 +0000
(10:57 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12493
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
include/shell.sh
patch
|
blob
|
history
diff --git
a/include/shell.sh
b/include/shell.sh
index
f6be6c5
..
634beed
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}'
}
This page took
0.022002 seconds
and
4
git commands to generate.