2016-07-12 16:39:02 +02:00
|
|
|
alias ll="ls -l"
|
|
|
|
|
|
|
|
alias catn="cat -n"
|
|
|
|
|
|
|
|
alias egrep="egrep --color"
|
|
|
|
|
|
|
|
alias grep="egrep"
|
|
|
|
|
|
|
|
alias c="clear"
|
|
|
|
|
2016-12-16 17:00:08 +01:00
|
|
|
alias vim="nvim"
|
2016-07-12 16:39:02 +02:00
|
|
|
|
|
|
|
alias find="find -E"
|
|
|
|
|
|
|
|
alias dir='find . -maxdepth 1 -type d -regex "\.\/[^.].+"'
|
|
|
|
|
|
|
|
# if pygmentize isn't installed run...
|
|
|
|
# sudo pip install pygments
|
|
|
|
# colorizes syntax of files
|
|
|
|
alias ccat="pygmentize -g"
|
|
|
|
|
2017-01-24 23:57:25 +01:00
|
|
|
# self-evident git alias
|
|
|
|
alias gprom="git pull --rebase origin master"
|
|
|
|
|
2016-07-12 16:39:02 +02:00
|
|
|
# view the Unix directory stack as maintained through
|
|
|
|
# pushd and popd commands
|
|
|
|
alias wdirs='dirs | tr " " "\n" | sort -r'
|
|
|
|
|