- ホームディレクトリに
.bashrc
ファイルを作成する$ touch ~/.bashrc
.bashrc
ファイルにaliasコマンドを追加する$ vim ~/.bashrc
を実行し、
.bashrc
を開く
下記例のように、alias [実行するエイリアスコマンド]='[実際のコマンド]'
となるように記載する#intellijエディタを開くコマンドをijで実行できるようにするエイリアス alias ij='open -b com.jetbrains.intellij' # dockerコンテナを止める alias dcdown='docker-compose down'
- .bashrcを.bash_profileから読み込む
$ vim ~/.bash_profile
を実行し、
.bash_profile
を開く
下記3行を先頭に追記する。if [ -f ~/.bashrc ] ; then . ~/.bashrc fi
.bashrc
.bash_profile
を反映させる$ source ~/.bashrc $ source ~/.bash_profile