Created
October 31, 2022 08:13
-
-
Save spyesx/3b38a47014732c8d4169c290a9490251 to your computer and use it in GitHub Desktop.
Download all images listed in list.txt then make it a PDF
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
#!/usr/bin/env bash | |
# Download all images listed in list.txt then make it a PDF | |
wget --input list.txt -O $1.jpg | |
convert *.jpg output.pdf |
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
http://domain.tld/path/to/image/filename-a.ext | |
http://domain.tld/path/to/image/filename-b.ext | |
http://domain.tld/path/to/image/filename-c.ext | |
http://domain.tld/path/to/image/filename-d.ext |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment