You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.2 KiB

  1. #!/bin/sh
  2. alias \
  3. q='exit' \
  4. ls="ls --color=auto" \
  5. ll="ls -G -alh" \
  6. dd='sudo dd status=progress' \
  7. h="history 1 | grep" \
  8. back='cd -' \
  9. b='cd -' \
  10. py='python3' \
  11. py2='python2' \
  12. vim='nvim' \
  13. ka='killall' \
  14. grep='grep --color=auto' \
  15. egrep='grep --color=auto -E' \
  16. p='sudo pacman' \
  17. extip='curl -s www.icanhazip.com' \
  18. ns='sudo nmap -p- -sV' \
  19. cc='rm -rf cache/* && php symfony cc' \
  20. pdu='php symfony propel:diff && php symfony propel:up' \
  21. foursync='php symfony four:sync' \
  22. ddate='date +%d-%m-%Y' \
  23. gitup='git push origin $(git rev-parse --abbrev-ref HEAD)' \
  24. gco='git checkout' \
  25. gbls='git --no-pager branch -a' \
  26. vv='nvim ~/.config/nvim/init.vim' \
  27. vz='nvim ~/.zshrc && source ~/.zshrc' \
  28. va='nvim ~/.config/aliasrc && source ~/.zshrc' \
  29. sz='source ~/.zshrc' \
  30. delorig='find . -name "*.orig" -exec rm {} \;' \
  31. delbak='find . -name "*.bak" -exec rm {} \;' \
  32. cpp="rsync --progress --recursive" \
  33. sv="sudo nvim" \
  34. c="xclip -selection clipboard" \
  35. v="xclip -selection clipboard -o" \
  36. lf="lfcd" \
  37. site-clone='wget --mirror --convert-links --adjust-extension --page-requisites --no-parent'