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

Fixes #9749
上级 b79fba7b
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册