From c24928815179e1a8e1e3a0a4ab130e22ba2e0f1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Cornell=C3=A0?= Date: Tue, 10 Aug 2021 21:05:00 +0200 Subject: [PATCH] feat(lib): add `mkcd` as equivalent to `takedir` (#9749) Fixes #9749 --- lib/functions.zsh | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/lib/functions.zsh b/lib/functions.zsh index 9cc73519..24b7254f 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 -- GitLab