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.
より快適にするために、次のように mkdir をオーバーライドするのが好きです。
mkdir() { if [[ "$@" == *--parents* ]]; then builtin mkdir "$@" else builtin mkdir "$@" --parents fi }
残念ながら、mkdir のビルトインはありません。仕事をする回避策をどのように行うことができますか?
command代わりに組み込みを使用できます。
command
mkdir() { if [[ "$@" == *--parents* ]]; then command mkdir "$@" else command mkdir "$@" --parents fi }
mkdir_p=`which mkdir`
その後、次のように呼び出すことができます:
$mkdir_p args...
また
alias mkdir=¨mkdir -p¨