diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2024-02-18 22:04:41 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2024-02-18 22:04:47 +0100 |
commit | 8ca26cbb43f8ff2b0b5a2c49d8e11a2f4dd54b79 (patch) | |
tree | df29d984b55d1e346863f4ad57cfd76f34af8bab /roles/webserver/files/www/memzero/pub/abi/sysv/sysv-gabi4-2013/.fetch.sh | |
parent | 181545b2cc783165b4387b0d9f31a177ae0af925 (diff) | |
download | ansible-memzero-8ca26cbb43f8ff2b0b5a2c49d8e11a2f4dd54b79.tar.gz ansible-memzero-8ca26cbb43f8ff2b0b5a2c49d8e11a2f4dd54b79.zip |
nginx: self-hosted freq used docs /pub/
Diffstat (limited to 'roles/webserver/files/www/memzero/pub/abi/sysv/sysv-gabi4-2013/.fetch.sh')
-rw-r--r-- | roles/webserver/files/www/memzero/pub/abi/sysv/sysv-gabi4-2013/.fetch.sh | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/roles/webserver/files/www/memzero/pub/abi/sysv/sysv-gabi4-2013/.fetch.sh b/roles/webserver/files/www/memzero/pub/abi/sysv/sysv-gabi4-2013/.fetch.sh new file mode 100644 index 0000000..0ff7818 --- /dev/null +++ b/roles/webserver/files/www/memzero/pub/abi/sysv/sysv-gabi4-2013/.fetch.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +rec_fetch() { + echo fetching $1 + curl --no-progress-meter https://www.sco.com/developers/gabi/latest/$1 -o $1 + + # Handle following link tags: + # <a href=ch4.reloc.html> + # <a href=ch5.dynamic.html#pointer_note> + # <a href="ch4.sheader.html#sh_flags"> + # <a href=#tag_encodings> + # <a href="#sh_type"> + for page in $(grep href $1 |\ + sed 's/.*href="\{0,1\}\([a-zA-Z._0-9]*\)"\{0,1\}[#>].*/\1/g' |\ + sort | uniq); do + if [[ -z $page || -f $page || ${page##*.} != html ]]; then + continue; + fi + + rec_fetch $page + done +} + +rec_fetch contents.html |