nnn/plugins/imgviu

11 lines
191 B
Bash
Executable File

#!/usr/bin/env sh
# Description: View an image or images in a directory in $PAGER
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana
if ! [ -z "$1" ]; then
viu -n "$1" | less -R
fi