function g { if [[ $# > 0 ]]; then git $@ else git status fi } insert-sudo() { zle beginning-of-line zle -U "sudo " } function port-forward { if [ $# -lt 2 ]; then echo Usage: port-forward HOST LOCAL_PORT \[REMOTE_PORT\] else ssh $1 -R ${3:-$2}":localhost:"$2 -g fi } function map-sshfs { if [ $# -eq 0 ]; then echo Usage: map-sshfs HOST DIRECTORY MOUNT else sshfs -o idmap=user -o workaround=rename $USER'@'$1':'$2 $HOME'/Mounts/'$3 fi } function gitignore-io { curl https://www.gitignore.io/api/$@ } function git-date-added { if [ $# -eq 0 ]; then echo Usage: git-date-added FILENAME else git log --format=%aD $1 | tail -1 fi } function run { if [ $# -lt 2 ]; then echo Usage: run NUMBER COMMAND else number=$1; shift for i in `seq $number`; do $@ done fi }