본문 바로가기

Linux Mac IntelliJ

Mac terminal alias 설정하기

명령어를 길게 치기 귀찮아서 alias 설정이 필요할 때가 있다.

 

그럴땐,

~/.bash_profile 로 이동하여 아래와 같은 키워드를 입력해준다.

 

 

alias gd="gcloud"
alias kk="kubectl"

 

그 후

source ./bash_profile 을 통해 해당내용을 적용하면 된다.