Skip to content

Instantly share code, notes, and snippets.

@jfhbrook
Created December 14, 2021 02:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jfhbrook/94865a09ecda95e75c3b225e62025cc8 to your computer and use it in GitHub Desktop.
Save jfhbrook/94865a09ecda95e75c3b225e62025cc8 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
FILE="${1}"
EXTENSION="${FILE##*.}"
case $EXTENSION in
pdf)
pdftotext -layout -eol unix -nopgbrk "${FILE}" -
;;
jpg|jpeg|gif|png)
viu "${FILE}"
;;
*)
bat -f "${FILE}"
;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment