diff options
author | Joris | 2023-09-16 18:28:16 +0200 |
---|---|---|
committer | Joris | 2023-09-16 18:31:24 +0200 |
commit | 06f045e90bb57c36738e58ee6830e2a2391bc6a3 (patch) | |
tree | a5b65b048c103b4ea0e5d3c0fa5e115cbaf3cf5f /bin/view | |
parent | 230f2e0623d22af6e68466884bd5dea5dcb846dc (diff) |
Migrate CLI to python
Diffstat (limited to 'bin/view')
-rwxr-xr-x | bin/view | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/bin/view b/bin/view deleted file mode 100755 index 4fd4efc..0000000 --- a/bin/view +++ /dev/null @@ -1,16 +0,0 @@ -#!/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 - -TMP_DIR=$(mktemp --directory) -cp public/* "$TMP_DIR" -bin/get-books "$BOOK_DIR" > "$TMP_DIR/books.js" -eval "$BROWSER $TMP_DIR/index.html" |