nnn/plugins/jump
Arun Prakash Jana 5c76187b61
Update docs
2019-12-16 05:55:15 +05:30

20 lines
395 B
Bash
Executable file

#!/usr/bin/env sh
# Description: Navigate to directory using autojump
#
# Requires: 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" "0$odir" > "$NNN_PIPE"
else
exit 1
fi