ZSH makers module

This commit is contained in:
Eryn Wells 2012-10-31 18:45:45 -07:00
parent 794b18099e
commit 216ff74d2a
3 changed files with 79 additions and 80 deletions

11
zsh/func/makers/mkmdir Normal file
View file

@ -0,0 +1,11 @@
#!/bin/zsh
# Make a Maildir directory
# Eryn Wells <eryn@erynwells.me>
if [[ -z $1 || $1 == "" ]]; then
echo "Usage: $0 [maildir]"
exit 1
else
mkdir -p $1/{new,cur,tmp}
return $?