2019-12-10 16:59:15 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
|
|
|
# Description: Navigate to directory using autojump
|
|
|
|
#
|
2020-05-06 05:29:57 +00:00
|
|
|
# Dependencies: autojump - https://github.com/wting/autojump
|
2019-12-10 16:59:15 +00:00
|
|
|
#
|
2019-12-16 00:25:15 +00:00
|
|
|
# Note: autojump STORES NAVIGATION PATTERNS
|
|
|
|
#
|
2019-12-10 16:59:15 +00:00
|
|
|
# Shell: POSIX compliant
|
|
|
|
# Author: Marty Buchaus
|
|
|
|
|
|
|
|
if which autojump >/dev/null 2>&1; then
|
|
|
|
printf "jump to: "
|
|
|
|
read -r dir
|
|
|
|
odir="$(autojump "$dir")"
|
2020-05-03 09:25:33 +00:00
|
|
|
printf "%s" "0c$odir" > "$NNN_PIPE"
|
2019-12-10 16:59:15 +00:00
|
|
|
else
|
2020-01-02 17:43:56 +00:00
|
|
|
printf "autojump missing"
|
|
|
|
read -r _
|
2019-12-10 16:59:15 +00:00
|
|
|
fi
|