vi ~/.bashrc
ㅎㅎ..
이렇게 간단한거였다니 ^^;
1. alias 전체 리스트 뽑을 때
alias
2. alias 만들때
test라고 alias를 만들어 주었다.
alisa test = "명령어"
3. alias 삭제
test란 alias 삭제
unalias test
4. alisa 영구등록
vi ~/.bashrc
첫번째 줄 이후에 해당 alias 복붙
# .bashrc
alias test = "명령어"
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=
# User specific aliases and functions
~
이후
source ~/.bashrc
하면 적용 완료
'DEVELOP' 카테고리의 다른 글
강화학습이란? ( feat. 지도학습) (1) | 2020.10.30 |
---|---|
[Security] 사용자 인증방식 종류와 결정 (0) | 2020.05.26 |
Feign 사용법 ( Neflix의 Rest Client 라이브러리) API GET/POST 하기~ (0) | 2020.03.12 |
OSI 7 계층 이해하기!! (0) | 2020.01.21 |
OAuth 2.0이란? (0) | 2020.01.06 |