Advertisement
Guest User

Untitled

a guest
Sep 11th, 2019
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. alias ..='cd ..'
  2. alias ...='cd ../..'
  3. alias ....='cd ../../..'
  4. alias ls='ls --color=auto'
  5. alias l='ls -lah --color=auto'
  6. alias la='ls -AF --color=auto'
  7. alias ll='ls -lFh --color=auto'
  8. alias grep='grep --color=auto'
  9. alias ping='ping -c 5'
  10. alias df='df -h'
  11. alias du='du -h -c'
  12. alias django='python manage.py'
  13.  
  14. mcd () {
  15. mkdir -p "$@" && cd "$@"
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement