aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/viuimg
blob: 8505be8b4b131107759333c676319f06d067fefc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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
    if [ -d "$1" ]; then
        viu -n "$1"/* 2>/dev/null | less -R
    else
        viu -n "$1" | less -R
    fi
fi