diff options
Diffstat (limited to 'bin/view')
-rwxr-xr-x | bin/view | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/bin/view b/bin/view new file mode 100755 index 0000000..159bc6a --- /dev/null +++ b/bin/view @@ -0,0 +1,16 @@ +#!/usr/bin/env bash +set -euo pipefail +cd $(dirname "$0")/.. + +if [ "$#" == 2 ]; then + BROWSER="$1" + BOOK_DIR="$2" +else + echo "usage: $0 browser-cmd path-to-book-directory" + exit 1 +fi + +bin/get-data "$BOOK_DIR" > "public/data.js" +TMP_DIR=$(mktemp --directory) +cp public/* "$TMP_DIR" +eval "$BROWSER $TMP_DIR/index.html" |