# README Journal list. * https://www.library.caltech.edu/journal-title-abbreviations * https://images.webofknowledge.com/images/help/WOS/A_abrvjt.html ``` $ pup 'dl json{}' < A_abrvjt.html | jq -rc .[0].children[] | grep "children" | python parse.py ``` Generate a full list. ``` $ while read line; do (curl -v "$line" | pup 'dl json{}' | jq -rc .[0].children[] | grep "children" | python parse.py); done < <(curl "https://www.library.caltech.edu/journal-title-abbreviations" | pup 'a attr{href}' | grep "help/WOS") > result.json ```