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
20
bashrc
20
bashrc
@ -1,3 +1,4 @@
|
|||||||
|
UNAME=`uname`
|
||||||
# TOC
|
# TOC
|
||||||
# Defaults etc... M0TZLS
|
# Defaults etc... M0TZLS
|
||||||
# Environment 7RS56S
|
# Environment 7RS56S
|
||||||
@ -96,9 +97,9 @@ if [ -x /usr/bin/dircolors ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# some more ls aliases
|
# some more ls aliases
|
||||||
alias ll='ls -alF --color=always'
|
if [[ $UNAME != Darwin ]]; then
|
||||||
alias la='ls -A --color=always'
|
alias ll='ls -alF --color=always' && alias la='ls -A --color=always' && alias l='ls -CF --color=always'
|
||||||
alias l='ls -CF --color=always'
|
fi
|
||||||
|
|
||||||
# Add an "alert" alias for long running commands. Use like so:
|
# Add an "alert" alias for long running commands. Use like so:
|
||||||
# sleep 10; alert
|
# sleep 10; alert
|
||||||
@ -127,7 +128,7 @@ fi
|
|||||||
hostname && uptime
|
hostname && uptime
|
||||||
|
|
||||||
##### Environment 7RS56S #####
|
##### 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.
|
# 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. --
|
## -- Start of aliases which are saved from Ubuntu default bashrc. --
|
||||||
|
|
||||||
# enable color support of ls and also add handy aliases
|
# enable color support of ls and also add handy aliases
|
||||||
alias ls='ls --color=always'
|
if [[ $UNAME != Darwin ]]; then
|
||||||
|
alias ls='ls --color=always'
|
||||||
|
fi
|
||||||
alias dir='dir --color=always'
|
alias dir='dir --color=always'
|
||||||
alias vdir='vdir --color=always'
|
alias vdir='vdir --color=always'
|
||||||
alias grep='grep --color=always'
|
alias grep='grep --color=always'
|
||||||
alias fgrep='fgrep --color=always'
|
alias fgrep='fgrep --color=always'
|
||||||
alias egrep='egrep --color=always'
|
alias egrep='egrep --color=always'
|
||||||
# some more ls aliases
|
# some more ls aliases
|
||||||
alias ll='ls -alF --color=always'
|
if [[ $UNAME != Darwin ]]; then
|
||||||
alias la='ls -A --color=always'
|
alias ll='ls -alF --color=always' && alias la='ls -A --color=always' && alias l='ls -CF --color=always'
|
||||||
alias l='ls -CF --color=always'
|
fi
|
||||||
# Add an "alert" alias for long running commands. Use like so:
|
|
||||||
|
|
||||||
## -- End of aliases which are saved from Ubuntu default bashrc. --
|
## -- End of aliases which are saved from Ubuntu default bashrc. --
|
||||||
|
|
||||||
|
11
zshrc
11
zshrc
@ -231,16 +231,19 @@ alias theme="prompt "
|
|||||||
## -- Start of aliases which are saved from Ubuntu default bashrc. --
|
## -- Start of aliases which are saved from Ubuntu default bashrc. --
|
||||||
|
|
||||||
# enable color support of ls and also add handy aliases
|
# enable color support of ls and also add handy aliases
|
||||||
alias ls='ls --color=always'
|
if [[ $UNAME != Darwin ]];then
|
||||||
|
alias ls='ls --color=always'
|
||||||
|
fi
|
||||||
alias dir='dir --color=always'
|
alias dir='dir --color=always'
|
||||||
alias vdir='vdir --color=always'
|
alias vdir='vdir --color=always'
|
||||||
alias grep='grep --color=always'
|
alias grep='grep --color=always'
|
||||||
alias fgrep='fgrep --color=always'
|
alias fgrep='fgrep --color=always'
|
||||||
alias egrep='egrep --color=always'
|
alias egrep='egrep --color=always'
|
||||||
# some more ls aliases
|
# some more ls aliases
|
||||||
alias ll='ls -alF --color=always'
|
if [[ $UNAME != Darwin ]];then
|
||||||
alias la='ls -A --color=always'
|
alias ll='ls -alF --color=always' && alias la='ls -A --color=always' && alias l='ls -CF --color=always'
|
||||||
alias l='ls -CF --color=always'
|
fi
|
||||||
|
|
||||||
# Add an "alert" alias for long running commands. Use like so:
|
# 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$//'\'')"'
|
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