summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Completion/Unix/Command/_md5sum9
2 files changed, 14 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 55a062a4d..216bee2c7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-09-28 Clint Adams <clint@zsh.org>
+
+ * Jesse Weinstein: 23848: Completion/Unix/Command/_md5sum:
+ completion for md5sum.
+
2007-09-27 Clint Adams <clint@zsh.org>
* Mikael Magnusson: 23838: Completion/Unix/Command/_git:
diff --git a/Completion/Unix/Command/_md5sum b/Completion/Unix/Command/_md5sum
new file mode 100644
index 000000000..0d0076292
--- /dev/null
+++ b/Completion/Unix/Command/_md5sum
@@ -0,0 +1,9 @@
+#compdef md5sum
+
+_arguments -S \
+ "-v[verbose, print file names when checking]" \
+ "-b[read files in binary mode]" \
+ "(*)-c[check message digests (default is generate)]:md5 digest file:_files -g \*.md5" \
+ "(-)*:file to digest:_files"
+
+