auts <- openalexR::oa_fetch(
"works",
group_by = "authorships.author.id",
primary_location.source.id = "s27298842",
verbose = TRUE
)
#> Requesting url: https://api.openalex.org/works?filter=primary_location.source.id%3As27298842&group_by=authorships.author.id
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # put script at the same level with the directory that contains pdfs (e.g. my_pdfs) | |
| # make my_pdfs the working directory | |
| # To run this script, first, make it executable: chmod +x convert.sh | |
| # Then run it: ./convert.sh | |
| mkdir outputEPS | |
| cp *.pdf outputEPS/ | |
| cd outputEPS |