aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/pdfview
blob: 20884d452ab5ed11c99684f4bc6e1bf279652682 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env sh

# Description: View a PDF file in pager
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana

if ! [ -z "$1" ]; then
    if [ $(head -c 4 "$1") = "%PDF" ]; then
        pdftotext -nopgbrk -layout "$1" - | sed 's/\xe2\x80\x8b//g' | $PAGER
    fi
fi