X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/97c8cb1b64a660538b7ef6cf5a9b98f904a8bccc..871a6908a5277bea86977a36756910b928784ceb:/include/shell.sh?ds=sidebyside diff --git a/include/shell.sh b/include/shell.sh index 1e60692b9..f6be6c526 100644 --- a/include/shell.sh +++ b/include/shell.sh @@ -28,3 +28,7 @@ trapret() {( } } )} + +md5s() { + which md5sum 2>&1 >/dev/null && md5sum "$@" | awk '{print $1}' || md5 "$@" +}