blob: a5c8e065824108c199b051a529a0e80e8831044a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# 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
```
|