projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
ar71xx: fix portability errors in dd commands
[openwrt.git]
/
include
/
shell.sh
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.021938 seconds
and
4
git commands to generate.