This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ebook-convert broken-book.epub fixed-book.epub |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Escaped color codes | |
BLACK=`echo -e '\033[0;30m'` | |
DK_GREY=`echo -e '\033[1;30m'` | |
RED=`echo -e '\033[0;31m'` | |
PINK=`echo -e '\033[1;31m'` | |
GREEN=`echo -e '\033[0;32m'` | |
LT_GREEN=`echo -e '\033[1;32m'` | |
BROWN=`echo -e '\033[0;33m'` |