본문 바로가기

STUDY/ECT

oh-my-zsh 단축어 등록

~/.zshrc파일을 수정하면 된다.

# visual studio code로 열어서 수정하기
$ code ~/.zshrc

# vi 편집기
$ vi ~/.zshrc

스크롤을 쭉 내리다보면 친절하게 예시까지 들어서 단축어 등록 방법을 알려주고 있다.
alias [단축어]=["실제 명령어"]로 입력

# Set personal aliases, overriding those provided by oh-my-zsh libs,
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
# users are encouraged to define aliases within the ZSH_CUSTOM folder.
# For a full list of active aliases, run `alias`.
#
# Example aliases
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"

alias ssh-real="ssh username@hostname"

변경된 설정값을 적용해준다

$ source ~/.zshrc

그리고 단축어가 잘 등록됐는지 확인

$ ssh-real