Skip to content

Commit

Permalink
Update working-with-batches-of-pdf-files.md
Browse files Browse the repository at this point in the history
Update the link in the `sed` command
  • Loading branch information
charlottejmc authored Oct 10, 2024
1 parent 4e84c24 commit 27c915f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion en/lessons/working-with-batches-of-pdf-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ To automate this step you can use the following command line commands. This will
curl https://webapps.ilo.org/public/libdoc/ilo/ILO-SR/ |
grep -o 'ILO[^"]*engl[^"><\/]*' |
uniq |
sed 's,ILO,https://www.ilo.org/public/libdoc/ilo/ILO-SR/ILO,g' > list_of_files.txt
sed 's,ILO,https://webapps.ilo.org/public/libdoc/ilo/ILO-SR/ILO,g' > list_of_files.txt
xargs -n 1 curl -O < list_of_files.txt
rm list_of_files.txt
```
Expand Down

0 comments on commit 27c915f

Please sign in to comment.