dotfiles/functions

53 lines
864 B
Text
Raw Normal View History

2013-04-29 13:38:49 -04:00
function g {
if [[ $# > 0 ]]; then
git $@
else
git status
fi
}
2016-02-19 08:32:02 -05:00
function insert-sudo {
2013-05-28 23:32:51 -04:00
zle beginning-of-line
zle -U "sudo "
}
2013-05-28 22:25:28 -04:00
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
2013-05-28 22:25:28 -04:00
}
function map-sshfs {
2013-09-18 21:08:28 -04:00
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
}
2014-08-21 05:56:28 -04:00
function gitignore-io {
2014-09-11 13:05:32 -04:00
curl https://www.gitignore.io/api/$@
2014-08-21 05:56:28 -04:00
}
2014-12-18 10:17:11 -05:00
function git-date-added {
if [ $# -eq 0 ]; then
echo Usage: git-date-added FILENAME
else
git log --format=%aD $1 | tail -1
fi
}
2016-02-05 13:52:00 -05:00
function run {
if [ $# -lt 2 ]; then
echo Usage: run NUMBER COMMAND
else
number=$1; shift
for i in `seq $number`; do
$@
done
fi
}