bryce@machine 대신 bryce@macbookpro로 터미널을 다시 가져오고 'ls' 명령이 보이는 파일과 폴더만 표시하도록 하려고 합니다.
답변1
별칭을 정의한 것 같습니다. 다음을 실행하여 그것이 무엇인지 찾으십시오.
alias ls
이는 쉘의 시작 스크립트 어딘가에 정의되어야 합니다. 예를 들어 Bash의 경우 다음에서 살펴볼 파일 목록을 찾을 수 있습니다.파일끝 부분에 있는 섹션 man bash
:
/etc/profile The systemwide initialization file, executed for login shells ~/.bash_profile The personal initialization file, executed for login shells ~/.bashrc The individual per-interactive-shell startup file
일시적으로 별칭을 우회하려면 command ls
또는 를 실행 \ls
하거나 를 사용하여 별칭을 일시적으로 제거 할 수 있습니다 unalias ls
.