summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2024-06-20 17:25:33 -0400
committerLouie S <louie@example.com>2024-06-20 17:25:33 -0400
commit27fe42030ff1fbf39820ea5673f19f822957096f (patch)
tree1e4ae9c089753864c329b490a9a69376ca1704a6 /src
parent52d6db2cc8dcb3112dff4cae4bcddbdbfbc7afd8 (diff)
Move index-terms.sh to shared scripts
Diffstat (limited to 'src')
-rwxr-xr-xsrc/index-terms.sh38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/index-terms.sh b/src/index-terms.sh
deleted file mode 100755
index fb3586f..0000000
--- a/src/index-terms.sh
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/usr/bin/env sh
-
-# shellcheck source=../../../scripts/create_table.sh
-. "$(dirname "$0")"/../../../scripts/create_table.sh
-# shellcheck source=../../../scripts/insert.sh
-. "$(dirname "$0")"/../../../scripts/insert.sh
-
-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}')"
-
- # DEBUG
- #echo "$NAME"
- #echo "$PAGE_PATH"
- #echo
-
- insert "$DB_PATH" "$NAME" "$TYPE" "$PAGE_PATH"
-}
-
-create_table "$DB_PATH"
-insert_index_terms "$@"