brew
Ls और अन्य उपकरणों के GNU संस्करण को स्थापित करने और उपयोग करने पर विचार करें ।
AppStore से XCode स्थापित करें।
Homebrew स्थापित करें ...
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Coreutils स्थापित करें ...
brew install coreutils
अपने नीचे जोड़ें .profile
...
export PATH="/usr/local/opt/coreutils/libexec/gnubin:$PATH"
export MANPATH="/usr/local/opt/coreutils/libexec/gnuman:$MANPATH"
मैं उर्फ ls
मेरे में .profile
सब कुछ और पूरी सूची के लिए एक शॉर्टकट के लिए रंग करने के लिए।
alias ls='ls --color'
alias l='ls -lah'
# -l use a long listing format
# -a do not ignore entries starting with .
# -h with -l and/or -s, print human readable sizes (e.g., 1K 234M 2G)
गीथूबLS_COLORS
पर विकल्पों का एक गुच्छा है ।