Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
作成しようとしています:
alias mcd="mkdir $1; cd $1"
取得:
$ mcd foo usage: mkdir [-pv] [-m mode] directory ... -bash: foo: command not found
私は何が間違っているのですか?
エイリアスは、コマンドの最初の単語を任意のテキストに置き換えることしかできません。パラメータは使用できません。
代わりに、シェル関数を使用できます。
mcd() { test -e "$1" || mkdir "$1" cd "$1" }