My build of nnn with minor changes
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/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
- printf "autojump missing"
- read -r _
- fi
|