サーバーはLinuxで開発はMacという私はよくMacのターミナルで ll と打ち込んでしまい以下のエラーとなってしまう。
command not found: ll
.bash_profileファイルに「ls -la」のエイリアスを作る。
vi ~/.bash_profile
alias ll='ls -la'
以下を実行し bash_profil eの内容を反映
source ~/.bash_profile
これでllを打つと ls -la が実行される。
※MacOS Catalinaからはシェルがbachからzshに変更されたため、.bash_profileではなく、以下のファイルへエイリアスを記載する
~/.zprofile
alias ll='ls -la'
同様に source コマンドで内容を反映する
source ~/.zprofile
コメント