zsh-goto/goto.plugin.zsh

51 lines
1.1 KiB
Bash
Raw Normal View History

#!/usr/bin/zsh
#
# goto.zsh, a tool for bookmarking directories
2016-09-30 17:19:41 +00:00
2017-04-18 00:29:17 +00:00
function _awk {
which awk &>/dev/null && awk $@ || \
which gawk &>/dev/null && gawk $@
};
function _strip_homedir {
};
2017-04-18 00:29:17 +00:00
2016-09-30 17:19:41 +00:00
function _gotofile {
echo $GOTO_FILE "$HOME/.labels.tsv" | _awk "{print \$1}"
};
2016-09-30 17:19:41 +00:00
function _make_label {
printf "%s %s\n" $1 $(echo $2 | tr -d "$HOME/") >> `_gotofile`
};
2016-09-30 17:19:41 +00:00
function label {
if [ "${#}" -eq 0 ]; then
echo "Usage: $ label <name> [dir]"
echo " creates a label which goto can cd to"
elif [ -d "${2}" ]; then
_make_label "${1}" "${2}"
else
_make_label "${1}" "${PWD}"
fi
};
2016-09-30 17:19:41 +00:00
function goto {
if [[ "${#}" -eq 0 ]]; then
echo "Usage: $ goto <name>"
echo " jumps to a record set by label"
elif [[ "$1" == "ls" ]]; then
_awk "{ print \$1 }" `_gotofile` | column -t
else
dir=$(_awk "/^$1\s/ {print \$2;exit;}" `_gotofile` | head -n 1)
if [[ "$dir" != "/*" ]]; then
dir="${HOME}/${dir}"
fi
if [[ ! -e "$dir" ]]; then
echo "Error: Label '$1' resolved to missing path '$dir'"
2016-09-30 17:19:41 +00:00
else
cd "$dir"
2016-09-30 17:19:41 +00:00
fi
fi
};