20 lines
239 B
Text
20 lines
239 B
Text
|
#!/usr/bin/zsh
|
||
|
|
||
|
: "${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
|