Essentially a rewrite of tag which hasn't been updated for ages. (Not adding any functionality -- most likely doing a subpar job, but decreasing dependencies.)
- Creates a temporary file is /tmp/ttag_aliases
- Considerably slower than tag because it is implemented in shell script (but has fewer dependencies)
Add function to .zshrc
:
tt() {
command /path/to/tt.sh "$@"; source /tmp/ttag_aliases
}