X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/97c8cb1b64a660538b7ef6cf5a9b98f904a8bccc..988734b10c6deea21c4cba16081790d98c130a48:/include/shell.sh

diff --git a/include/shell.sh b/include/shell.sh
index 1e60692b9..634beedce 100644
--- a/include/shell.sh
+++ b/include/shell.sh
@@ -28,3 +28,10 @@ trapret() {(
 		}
 	}
 )}
+
+md5s() {
+	cat "$@" | (
+		md5sum 2>/dev/null ||
+		md5 
+	) | awk '{print $1}'
+}