mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 07:24:39 +01:00
17 lines
359 B
Text
17 lines
359 B
Text
## .aliases
|
|
|
|
case "$(uname)" in
|
|
"Darwin")
|
|
alias top="top -o cpu -s 5"
|
|
if which gls >/dev/null; then
|
|
#brew list coreutils | grep '/usr/local/Cellar/coreutils/[^/]*/bin/g' | sed 's/.*\///'
|
|
alias ls="gls --color=auto"
|
|
fi
|
|
;;
|
|
"Linux")
|
|
alias ls="ls --color"
|
|
;;
|
|
esac
|
|
|
|
alias ll="ls -l"
|
|
|