summaryrefslogtreecommitdiff
path: root/etc/functions/mkcd
diff options
context:
space:
mode:
Diffstat (limited to 'etc/functions/mkcd')
-rw-r--r--etc/functions/mkcd13
1 files changed, 0 insertions, 13 deletions
diff --git a/etc/functions/mkcd b/etc/functions/mkcd
deleted file mode 100644
index e91719a..0000000
--- a/etc/functions/mkcd
+++ /dev/null
@@ -1,13 +0,0 @@
-## vim:ft=zsh
-## create a directory, then change into it
-typeset -i ls=0
-typeset dir=${1}
-
-if [[ -z ${dir} ]] {
- echo "Usage: mkcd <directory name>" > /dev/stderr
- return 1
-}
-if [[ -d ${dir} ]] ls=1
-mkdir -p ${dir}
-cd ${dir}
-if ((ls)) ls --color=auto