최근에 macOS와 Terminal을 업데이트했습니다.
- macOS Sierra 10.12.6
- 명령 줄 도구 버전 9.0
지금 내가 달릴 때마다 cd
터미널에서 그것은 그 디렉토리로 이동하여 원하지 않는 (기본적으로) 모든 디렉토리 구조를 자동으로 나열합니다.
어떻게 해결할 수 있습니까? 나는 범인이 별칭일지도 모른다고 생각하지만 그것을 고치는 법을 모른다. 그리고 나의 bash_profile 설정이 여기에있다.
~ / .bash_profile
alias cp='cp -iv' # Preferred 'cp' implementation
alias mv='mv -iv' # Preferred 'mv' implementation
alias mkdir='mkdir -pv' # Preferred 'mkdir' implementation
alias ll='ls -FGlAhp' # Preferred 'ls' implementation
alias less='less -FSRXc' # Preferred 'less' implementation
cd() { builtin cd "$@"; ll; } # Always list directory contents upon 'cd'
alias cd..='cd ../' # Go back 1 directory level (for fast typers)
alias ..='cd ../' # Go back 1 directory level
alias ...='cd ../../' # Go back 2 directory levels
alias .3='cd ../../../' # Go back 3 directory levels
alias .4='cd ../../../../' # Go back 4 directory levels
alias .5='cd ../../../../../' # Go back 5 directory levels
alias .6='cd ../../../../../../' # Go back 6 directory levels
alias edit='subl' # edit: Opens any file in sublime editor
alias f='open -a Finder ./' # f: Opens current directory in MacOS Finder
alias ~="cd ~" # ~: Go Home
alias c='clear'
alias qfind="find . -name " # qfind: Quickly search for file
ff () { /usr/bin/find . -name "$@" ; } # ff: Find file under the current directory
ffs () { /usr/bin/find . -name "$@"'*' ; } # ffs: Find file whose name starts with a given string
ffe () { /usr/bin/find . -name '*'"$@" ; } # ffe: Find file whose name ends with a given string
alias psgrep='ps aux | grep '
#cd()
...에서.bash_profile .