1
0
Fork 0
mirror of https://github.com/jarun/nnn.git synced 2025-03-11 17:24:06 +00:00
nnn/plugins/pdfview

13 lines
269 B
Text
Raw Normal View History

2019-05-05 20:56:37 +05:30
#!/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