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.
ZSHで1語のエイリアスを作成するのは簡単です。
alias ll='ls -lah'
Zshで2つの単語エイリアスを作成して、両方の単語が同じエイリアスの一部として解析されるようにする方法はありますか?私は主にタイプミスの修正に使用したいと思います。
alias 'gits t'='git st'
これを試して:
alias func='gits t' func() { 'gits t'='git st' }
Zshエイリアス関数に関する詳細はこちら: