21 lines
251 B
Bash
Executable file
21 lines
251 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
|
|
set -e
|
|
|
|
: "${1:=--help}"
|
|
|
|
case "$1" in
|
|
-h|--help|help)
|
|
cat <<EOF
|
|
Usage:
|
|
$ goto [label]
|
|
|
|
Change directory to a labeled location.
|
|
See label for label control operations
|
|
EOF
|
|
;;
|
|
|
|
*)
|
|
cd "$(label get "$1")"
|
|
;;
|
|
esac
|