mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-16 16:29:23 +01:00
bashrc & zshrc: Don't alias ls on Mac OS X
This commit is contained in:
parent
701787a547
commit
4f89ce01d1
18
bashrc
18
bashrc
@ -1,3 +1,4 @@
|
||||
UNAME=`uname`
|
||||
# TOC
|
||||
# Defaults etc... M0TZLS
|
||||
# Environment 7RS56S
|
||||
@ -96,9 +97,9 @@ if [ -x /usr/bin/dircolors ]; then
|
||||
fi
|
||||
|
||||
# some more ls aliases
|
||||
alias ll='ls -alF --color=always'
|
||||
alias la='ls -A --color=always'
|
||||
alias l='ls -CF --color=always'
|
||||
if [[ $UNAME != Darwin ]]; then
|
||||
alias ll='ls -alF --color=always' && alias la='ls -A --color=always' && alias l='ls -CF --color=always'
|
||||
fi
|
||||
|
||||
# Add an "alert" alias for long running commands. Use like so:
|
||||
# sleep 10; alert
|
||||
@ -127,7 +128,7 @@ fi
|
||||
hostname && uptime
|
||||
|
||||
##### Environment 7RS56S #####
|
||||
# Environment should be placed to .environment or .bash_environment (or .bashenv).
|
||||
# Environment should be placed to .environment or .bash_environment.
|
||||
|
||||
# Source before mentioned locations if they exist.
|
||||
|
||||
@ -280,17 +281,18 @@ alias supybot-generate-messages.pot-mass="find . -type d -exec sh -c '(cd {} &&
|
||||
## -- Start of aliases which are saved from Ubuntu default bashrc. --
|
||||
|
||||
# enable color support of ls and also add handy aliases
|
||||
if [[ $UNAME != Darwin ]]; then
|
||||
alias ls='ls --color=always'
|
||||
fi
|
||||
alias dir='dir --color=always'
|
||||
alias vdir='vdir --color=always'
|
||||
alias grep='grep --color=always'
|
||||
alias fgrep='fgrep --color=always'
|
||||
alias egrep='egrep --color=always'
|
||||
# some more ls aliases
|
||||
alias ll='ls -alF --color=always'
|
||||
alias la='ls -A --color=always'
|
||||
alias l='ls -CF --color=always'
|
||||
# Add an "alert" alias for long running commands. Use like so:
|
||||
if [[ $UNAME != Darwin ]]; then
|
||||
alias ll='ls -alF --color=always' && alias la='ls -A --color=always' && alias l='ls -CF --color=always'
|
||||
fi
|
||||
|
||||
## -- End of aliases which are saved from Ubuntu default bashrc. --
|
||||
|
||||
|
9
zshrc
9
zshrc
@ -231,16 +231,19 @@ alias theme="prompt "
|
||||
## -- Start of aliases which are saved from Ubuntu default bashrc. --
|
||||
|
||||
# enable color support of ls and also add handy aliases
|
||||
if [[ $UNAME != Darwin ]];then
|
||||
alias ls='ls --color=always'
|
||||
fi
|
||||
alias dir='dir --color=always'
|
||||
alias vdir='vdir --color=always'
|
||||
alias grep='grep --color=always'
|
||||
alias fgrep='fgrep --color=always'
|
||||
alias egrep='egrep --color=always'
|
||||
# some more ls aliases
|
||||
alias ll='ls -alF --color=always'
|
||||
alias la='ls -A --color=always'
|
||||
alias l='ls -CF --color=always'
|
||||
if [[ $UNAME != Darwin ]];then
|
||||
alias ll='ls -alF --color=always' && alias la='ls -A --color=always' && alias l='ls -CF --color=always'
|
||||
fi
|
||||
|
||||
# Add an "alert" alias for long running commands. Use like so:
|
||||
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user