mirror of
https://github.com/jarun/nnn.git
synced 2024-11-01 00:47:18 +00:00
21 lines
433 B
Bash
Executable file
21 lines
433 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
# Description: Navigate to directory using autojump
|
|
#
|
|
# Dependencies: autojump - https://github.com/wting/autojump
|
|
#
|
|
# Note: autojump STORES NAVIGATION PATTERNS
|
|
#
|
|
# Shell: POSIX compliant
|
|
# Author: Marty Buchaus
|
|
|
|
if which autojump >/dev/null 2>&1; then
|
|
printf "jump to: "
|
|
read -r dir
|
|
odir="$(autojump "$dir")"
|
|
printf "%s" "0c$odir" > "$NNN_PIPE"
|
|
else
|
|
printf "autojump missing"
|
|
read -r _
|
|
fi
|