feat(lib): add mkcd as equivalent to takedir (#9749)

Fixes #9749
This commit is contained in:
Marc Cornellà 2021-08-10 21:05:00 +02:00
parent b79fba7b0d
commit c249288151
No known key found for this signature in database
GPG key ID: 0314585E776A9C1B

View file

@ -13,10 +13,6 @@ function upgrade_oh_my_zsh() {
omz update omz update
} }
function takedir() {
mkdir -p $@ && cd ${@:$#}
}
function open_command() { function open_command() {
local open_cmd local open_cmd
@ -37,6 +33,13 @@ function open_command() {
${=open_cmd} "$@" &>/dev/null ${=open_cmd} "$@" &>/dev/null
} }
# take functions
# mkcd is equivalent to takedir
function mkcd takedir() {
mkdir -p $@ && cd ${@:$#}
}
function takeurl() { function takeurl() {
data=$(mktemp) data=$(mktemp)
curl -L $1 > $data curl -L $1 > $data