diff options
author | Louie S <louie@example.com> | 2023-09-14 13:53:09 -0400 |
---|---|---|
committer | Louie S <louie@example.com> | 2023-09-14 13:53:09 -0400 |
commit | 1e6a7a7da4e6cae9986b6f8cbb2558df4de8ea42 (patch) | |
tree | 362b711881915a705d2d93e075e4881b781b299e /src/index-terms.sh | |
parent | bc3a8e65382af25a44049d1de8fa96647cd325e1 (diff) |
Working, albeit showing some unknown errors during the build process
Diffstat (limited to 'src/index-terms.sh')
-rwxr-xr-x | src/index-terms.sh | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/index-terms.sh b/src/index-terms.sh new file mode 100755 index 0000000..f74af03 --- /dev/null +++ b/src/index-terms.sh @@ -0,0 +1,33 @@ +#!/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 "$@" |