2016-06-16 18:24:19 +00:00
|
|
|
###
|
|
|
|
# Common shell functions/aliases between bash and zsh.
|
|
|
|
###
|
|
|
|
|
2017-01-11 20:31:21 +00:00
|
|
|
# Notify to update the dotfiles.
|
|
|
|
dfm check-update
|
|
|
|
|
2016-06-16 18:24:19 +00:00
|
|
|
################################################################################
|
|
|
|
## Functions
|
|
|
|
################################################################################
|
|
|
|
|
2017-05-04 17:23:40 +00:00
|
|
|
# Poor Man's ngrok. https://www.kirsle.net/blog/entry/poor-mans-ngrok
|
|
|
|
tunup() {
|
|
|
|
port=${1:-5000}
|
|
|
|
echo "Forwarding kirsle.net:5000 to local port $port"
|
2017-06-05 22:18:40 +00:00
|
|
|
ssh -R 5000:127.0.0.1:$port kirsle
|
2017-05-04 17:23:40 +00:00
|
|
|
}
|
|
|
|
|
2016-06-16 18:24:19 +00:00
|
|
|
# Recursively traverse directory tree for git repositories, run git command
|
|
|
|
# e.g.
|
|
|
|
# rgit status
|
|
|
|
# rgit diff
|
|
|
|
#
|
|
|
|
# Credit:
|
|
|
|
# http://chr4.org/blog/2014/09/10/gittree-bash-slash-zsh-function-to-run-git-commands-recursively/
|
|
|
|
rgit() {
|
|
|
|
if [ $# -lt 1 ]; then
|
|
|
|
echo "Usage: rgit <command>"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
for gitdir in $(find . -type d -name .git); do
|
|
|
|
# Display repository name in bold orange text.
|
|
|
|
repo=$(dirname $gitdir)
|
|
|
|
echo -e "\e[1;38;5;208m$repo\e[0m"
|
|
|
|
|
|
|
|
# Run git command in the repository's directory
|
|
|
|
cd $repo && git $@
|
|
|
|
ret=$?
|
|
|
|
|
|
|
|
# Return to calling directory (ignore output)
|
|
|
|
cd - >/dev/null
|
|
|
|
|
|
|
|
# Abort if cd or git command fails
|
|
|
|
if [ $ret -ne 0 ]; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo
|
|
|
|
done
|
|
|
|
}
|
2017-06-09 17:18:22 +00:00
|
|
|
|
|
|
|
# Generate a random UUID4 string.
|
|
|
|
uuid4() {
|
|
|
|
python -c "import uuid; print(str(uuid.uuid4()))"
|
|
|
|
}
|