summaryrefslogtreecommitdiff
path: root/src/index-terms.sh
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2024-06-26 18:34:49 -0400
committerLouie S <louie@example.com>2024-06-26 18:53:42 -0400
commit8fdfbacc6fbf173139b64a0bfa20c94903ad9392 (patch)
tree11ec794a8343eca97f32d5587d949808a25c92d9 /src/index-terms.sh
parentb70cc298b199c7e735eebb23869481adccbc237f (diff)
Convert to submodule
Diffstat (limited to 'src/index-terms.sh')
-rwxr-xr-xsrc/index-terms.sh33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/index-terms.sh b/src/index-terms.sh
deleted file mode 100755
index f74af03..0000000
--- a/src/index-terms.sh
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/usr/bin/env sh
-
-# shellcheck source=./lib/create_table
-. "$(dirname "$0")"/lib/create_table
-# shellcheck source=./lib/insert
-. "$(dirname "$0")"/lib/insert
-
-TYPE="$1"
-shift
-DB_PATH="$1"
-shift
-
-insert_index_terms() {
- # Get each term from an index page and insert
- while [ -n "$1" ]; do
- grep -Eo "<a href.*</a>:" "$1" | while read -r line; do
- insert_term "$line"
- done
-
- shift
- done
-}
-
-insert_term() {
- LINK="$1"
- NAME="$(echo "$LINK" | pup -p 'a text{}' | sed 's/\"\"//g' | tr -d \\n)"
- PAGE_PATH="$(echo "$LINK" | pup -p 'a attr{href}')"
-
- insert "$DB_PATH" "$NAME" "$TYPE" "$PAGE_PATH"
-}
-
-create_table "$DB_PATH"
-insert_index_terms "$@"