X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;f=include%2Fshell.sh;fp=include%2Fshell.sh;h=634beedcef3e17d351f440a765c251ae16f50737;hb=fef278a548b3a72f878a085d888d4852ef49cfd1;hp=f6be6c526f26fb489cc660d7201bce3c3a1117b7;hpb=5ef8ada0f7d45c184960aba986d8861fa442a274;p=openwrt.git 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}' }