Working with epr/epy and gentle cascading failures

master
Steven Saus 4 years ago
parent 0eb643896b
commit 0a7db0060a
  1. 54
      books_search.sh

@ -87,32 +87,42 @@ main() {
#extra xargs to strip newlines and whitespace
book=$( echo "$SelectedBook" | awk -F '|' '{print $4}' | xargs)
type=$( echo "$SelectedBook" | awk -F '|' '{print $1}' | xargs)
echo "$book"
read
if [ -n "$book" ]; then
if [ "$CliOnly" == "true" ];then
case "$type" in
pdf)
;;
mobi|azw3)
;;
if [ -f "$EPY" ];then
executeme=$(printf "%s \"%s\"" "$EPY" "$book")
eval "$executeme"
elif [ -f "$EPR" ];then
executeme=$(printf "%s \"%s\"" "$EPR" "$book")
eval "$executeme"
else
if [ "$CliOnly" == "false" ];then
xdg-open "${book}"
else
if [ ! -f "$EPY" ] && [ ! -f "$EPR" ];then
# there is no sense doing extra processing if xdg-open is just
# going to handle it.
xdg-open "${book}"
else
case "$type" in
pdf)
tmpfile=$(mktemp)
## Pick the one you like!
pdftotext -nopgbrk -layout "${book}" "$tmpfile"; bat "$tmpfile"; rm "$tmpfile"
#pdftohtml -c -i -s -zoom 1 "${book}" "$tmpfile"; www-browser "$tmpfile"; rm "$tmpfile"
exit 0
;;
mobi|azw3)
tmpdir=$(mktemp -d)
# You hopefully have calibre?
ebook-convert "${book}" "$tmpdir/out.epub"
book=$(echo "$tmpdir/out.epub")
;;
*) echo "Calling reader"
;;
esac
if [ -f "$EPY" ];then
executeme=$(printf "%s \"%s\"" "$EPY" "$book")
eval "$executeme"
elif [ -f "$EPR" ];then
executeme=$(printf "%s \"%s\"" "$EPR" "$book")
eval "$executeme"
fi
fi
else
xdg-open "${book}"
fi
#
else
echo "Book file not found!" 1>&2
exit 1

Loading…
Cancel
Save