From fd3e547348cdddaa2486b1ff4e99b9f53e7ee593 Mon Sep 17 00:00:00 2001 From: Valentin Gehrke Date: Thu, 12 Nov 2015 20:53:23 +0100 Subject: [PATCH] Added md5dir helper --- zsh/.zsh/10-helpers.zsh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zsh/.zsh/10-helpers.zsh b/zsh/.zsh/10-helpers.zsh index 1995c16..799035d 100644 --- a/zsh/.zsh/10-helpers.zsh +++ b/zsh/.zsh/10-helpers.zsh @@ -24,3 +24,7 @@ gitall() { cd "$ROOT"; done } + +md5dir() { + find $1 -type f -print0 | xargs -0 md5sum +}