diff options
| author | 2020-05-30 15:18:12 +0200 | |
|---|---|---|
| committer | 2020-05-30 18:48:12 +0530 | |
| commit | 3feae709acdd1434d55f6ce8862eb1490f2f74e2 (patch) | |
| tree | 797aad7758870e798ee57094ef9d5231ff9aa817 /plugins | |
| parent | 309ed0ed6744833652230db626d4caf127f9226a (diff) | |
| download | nnn-3feae709acdd1434d55f6ce8862eb1490f2f74e2.tar.gz | |
also send mutool to $PAGER (#615)
Diffstat (limited to 'plugins')
| -rwxr-xr-x | plugins/nuke | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/nuke b/plugins/nuke index 1d2cd68..39c6324 100755 --- a/plugins/nuke +++ b/plugins/nuke @@ -92,7 +92,7 @@ handle_pdf() { pdftotext -l 10 -nopgbrk -q -- "${FPATH}" - | eval "$PAGER" exit 0 elif which mutool >/dev/null 2>&1; then - mutool draw -F txt -i -- "${FPATH}" 1-10 + mutool draw -F txt -i -- "${FPATH}" 1-10 | eval "$PAGER" exit 0 elif which exiftool >/dev/null 2>&1; then exiftool "${FPATH}" | eval "$PAGER" |