#!/bin/sh # Locate PDFs and read them. # Requires: locate, fzf, zathura. f="$(locate .pdf | fzf)" [ -z "$f" ] && exit zathura "$f"