summaryrefslogtreecommitdiff
path: root/lib/functions.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'lib/functions.zsh')
-rw-r--r--lib/functions.zsh11
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/functions.zsh b/lib/functions.zsh
index 9cc735196..24b7254fb 100644
--- a/lib/functions.zsh
+++ b/lib/functions.zsh
@@ -13,10 +13,6 @@ function upgrade_oh_my_zsh() {
omz update
}
-function takedir() {
- mkdir -p $@ && cd ${@:$#}
-}
-
function open_command() {
local open_cmd
@@ -37,6 +33,13 @@ function open_command() {
${=open_cmd} "$@" &>/dev/null
}
+# take functions
+
+# mkcd is equivalent to takedir
+function mkcd takedir() {
+ mkdir -p $@ && cd ${@:$#}
+}
+
function takeurl() {
data=$(mktemp)
curl -L $1 > $data