This commit is contained in:
Galexrt 2015-01-09 15:10:51 +00:00
commit 50d13109b3

View file

@ -3,17 +3,17 @@
# #
# ls, the common ones I use a lot shortened for rapid fire usage # ls, the common ones I use a lot shortened for rapid fire usage
alias l='ls -lFh' #size,show type,human readable alias l='ls -laFh' #size,show type,human readable,show hidden
alias la='ls -lAFh' #long list,show almost all,show type,human readable alias la='ls -laAFh' #long list,show almost all,show type,human readable
alias lr='ls -tRFh' #sorted by date,recursive,show type,human readable alias lr='ls -taRFh' #sorted by date,recursive,show type,human readable
alias lt='ls -ltFh' #long list,sorted by date,show type,human readable alias lt='ls -latFh' #long list,sorted by date,show type,human readable
alias ll='ls -l' #long list alias ll='ls -la' #long list
alias ldot='ls -ld .*' alias ldot='ls -lda .*'
alias lS='ls -1FSsh' alias lS='ls -1FSsha'
alias lart='ls -1Fcart' alias lart='ls -1Fcart'
alias lrt='ls -1Fcrt' alias lrt='ls -1Fcrta'
alias zshrc='vim ~/.zshrc' # Quick access to the ~/.zshrc file alias zshrc='nano ~/.zshrc' # Quick access to the ~/.zshrc file
alias grep='grep --color' alias grep='grep --color'
alias sgrep='grep -R -n -H -C 5 --exclude-dir={.git,.svn,CVS} ' alias sgrep='grep -R -n -H -C 5 --exclude-dir={.git,.svn,CVS} '
@ -21,6 +21,8 @@ alias sgrep='grep -R -n -H -C 5 --exclude-dir={.git,.svn,CVS} '
alias t='tail -f' alias t='tail -f'
# because typing 'cd' is A LOT of work!! # because typing 'cd' is A LOT of work!!
alias /.='cd /'
alias .~='cd ~'
alias ..='cd ../' alias ..='cd ../'
alias ...='cd ../../' alias ...='cd ../../'
alias ....='cd ../../../' alias ....='cd ../../../'
@ -50,7 +52,7 @@ alias p='ps -f'
alias sortnr='sort -n -r' alias sortnr='sort -n -r'
alias unexport='unset' alias unexport='unset'
alias whereami=display_info alias whereami='pwd'
alias rm='rm -i' alias rm='rm -i'
alias cp='cp -i' alias cp='cp -i'