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.
以下のエイリアスを作成したいと思います。これを設定する方法を教えてください。
mate \`find . -name <filename>\`
代わりに関数を使用します。mymate() { mate $(find . -name "$1"); }
mymate() { mate $(find . -name "$1"); }
これは間接的な解決策です。コマンドをファイルに入れ(.shはcmdfileと言わない)~/bin、エイリアスを次のように指定しますalias myalias=cmdfile
~/bin
alias myalias=cmdfile