check if $entry is fullpath or not

This commit is contained in:
NRK 2021-11-01 14:05:18 +06:00
parent a47376ee04
commit afb7a6e9c1
1 changed files with 6 additions and 2 deletions

View File

@ -41,10 +41,14 @@ fi
# Check for picker mode
if [ "$3" ]; then
if [ "$entry" ]; then
case "$entry" in
/*) fullpath="${2}/$entry" ;;
*) fullpath="$entry" ;;
esac
if [ "-" = "$3" ]; then
printf "%s\n" "${2}/$entry"
printf "%s\n" "$fullpath"
else
printf "%s\n" "${2}/$entry" > "$3"
printf "%s\n" "$fullpath" > "$3"
fi
# Tell `nnn` to clear its internal selection