|
#!/bin/sh
|
|
alias q='exit' \
|
|
dd='sudo dd status=progress' \
|
|
h="history | grep" \
|
|
back='cd -' \
|
|
b='cd -' \
|
|
py='python3' \
|
|
py2='python2' \
|
|
v='nvim' \
|
|
vim='nvim' \
|
|
ka='killall' \
|
|
grep='grep --color=auto' \
|
|
egrep='grep --color=auto -E' \
|
|
sshtj='ssh tovi@tovijaeschke.xyz' \
|
|
extip='curl -s www.icanhazip.com' \
|
|
ns='sudo nmap -p- -sV' \
|
|
cc='rm -rf cache/* && php symfony cc' \
|
|
pdu='php symfony propel:diff && php symfony propel:up' \
|
|
foursync='php symfony four:sync' \
|
|
ddate='date +%d-%m-%Y' \
|
|
gitup='git push origin $(git rev-parse --abbrev-ref HEAD)' \
|
|
gco='git checkout' \
|
|
vv='nvim ~/.config/nvim/init.vim' \
|
|
delorig='find . -name "*.orig" -exec rm {} \;' \
|
|
delbak='find . -name "*.bak" -exec rm {} \;' \
|
|
site-clone='wget --mirror --convert-links --adjust-extension --page-requisites --no-parent'
|