1. 확인
ll
-bash: ll: command not found
2. alias 추가
- 환경설정 수정
vi ~/.profile
- alias 추가
alias l='ls -l'
alias ll='ls -l'
- 환경설정 적용
source ~/.profile
1. 확인
ll
-bash: ll: command not found
2. alias 추가
- 환경설정 수정
vi ~/.profile
- alias 추가
alias l='ls -l'
alias ll='ls -l'
- 환경설정 적용
source ~/.profile