Fixed wrong "/dev/null" entry in 08.alias file.

This commit is contained in:
Heavy 2021-07-09 08:43:39 +02:00
parent 1d5cd79cd0
commit cf24e2f956

View File

@ -20,6 +20,16 @@ alias lm='ls -al |more' # pipe through 'more'
alias l='ls -CF'
alias lsd='ls -l | grep "^d"' #list only directories
# dircolors
export LS_OPTIONS='--color=auto'
eval "$(dircolors -b)"
alias ls='ls $LS_OPTIONS'
# Use vim if available
if type vim >/dev/null 2>/dev/null; then
alias vi=$(which vim)
fi
# git shortcut
alias gg='git graph'
@ -29,6 +39,9 @@ alias tailer="tail --follow=name --retry"
# git aliases
alias gg='git graph'
# grep processes
alias psg='ps -aux | grep -v grep | grep '
# aliases to own scripts
alias start-agent='start-agent.sh'
alias find-agent='find-agent.sh'