1
0
Fork 0
dotfiles/bash/functions.bash

59 lines
1.2 KiB
Bash
Raw Normal View History

2017-03-10 10:42:12 +00:00
function reload {
source $HOME/.bash_profile
}
function ssh {
# Change tab title
local host=$(echo $1 | cut -d@ -f1)
__iterm_set_title $host
# Change tab color and reset back when conneciton is closed
__iterm_set_bg_rgb 220 20 0 && \
/usr/bin/ssh $@ && \
__iterm_set_bg_reset
}
2017-10-20 22:58:04 +00:00
function gkloc {
2017-10-20 22:55:39 +00:00
cloc $(git ls-files)
}
2017-03-10 10:42:12 +00:00
function shuf {
awk 'BEGIN {srand(); OFMT="%.17f"} {print rand(), $0}' "$@" | \
sort -k1,1n | \
cut -d' ' -f2-
}
function __bash_ssh_complete {
2019-10-09 22:55:27 +00:00
__bash_complete "$(cat $HOME/.ssh/known_hosts | cut -d' ' -f1 | cut -d, -f1)"
2017-03-10 10:42:12 +00:00
}
complete -F __bash_ssh_complete ssh
#
# Directory shortcuts
#
function h { cd $HOME/$1; }
function _h { __bash_directory_complete $HOME; }
complete -F _h h
function c { cd $(realpath $PROJECTS/$1); }
function _c { __bash_directory_complete $PROJECTS; }
complete -F _c c
2017-10-05 11:19:48 +00:00
function cg { cd $GOPATH/src/github.com/$1; }
function _cg { __bash_directory_complete $GOPATH/src/github.com; }
complete -F _cg cg
2019-10-09 22:55:27 +00:00
#
# Misc
#
2017-03-10 10:42:12 +00:00
function __bash_directory_complete {
2019-10-09 22:55:27 +00:00
__bash_complete "$(ls $1)"
}
function __bash_complete {
2017-03-10 10:42:12 +00:00
local cur=${COMP_WORDS[COMP_CWORD]}
2019-10-09 22:55:27 +00:00
COMPREPLY=($(compgen -o nospace -W "$1" -- $cur))
2017-03-10 10:42:12 +00:00
}