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

View file

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