cheatsheet:gallery-dl
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| cheatsheet:gallery-dl [2025/08/17 12:51] – removed - external edit (Unknown date) 127.0.0.1 | cheatsheet:gallery-dl [2026/05/17 18:38] (current) – melo | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ===== gallery-dl ===== | ||
| + | ==== mangadex chapter extract ==== | ||
| + | |||
| + | <code bash> | ||
| + | |||
| + | ==== instagram rip ==== | ||
| + | |||
| + | <code bash> | ||
| + | |||
| + | ==== photobucket embed rip ==== | ||
| + | |||
| + | <code bash> | ||
| + | gallery-dl -g " | ||
| + | # (strip all text but LJ links) | ||
| + | gallery-dl -i i.txt | ||
| + | </ | ||
| + | |||
| + | ==== livejournal pic redirect link rip ==== | ||
| + | |||
| + | <code bash> | ||
| + | gallery-dl -g " | ||
| + | # (strip all text but LJ links) | ||
| + | gallery-dl -i i.txt | ||
| + | |||
| + | # do this twice to get final redirected links | ||
| + | # final file is 3.txt, run `-i` on that | ||
| + | wget -O /dev/null $(cat i.txt) 2>&1 | grep -w ' | ||
| + | wget -O /dev/null $(cat 2.txt) 2>&1 | grep -w ' | ||
| + | gallery-dl -i 3.txt | ||
| + | </ | ||
| + | |||
| + | ==== livejournal postimg icon embed rip ==== | ||
| + | |||
| + | <code bash> | ||
| + | gallery-dl -g " | ||
| + | # (strip all text but LJ links) | ||
| + | gallery-dl -i i.txt | ||
| + | |||
| + | # creates new file | ||
| + | sed -e ' | ||
| + | # remove double newlines | ||
| + | awk 'NF > 0 {blank=0} NF == 0 {blank++} blank < 1' i2.txt > i3.txt | ||
| + | |||
| + | # do this twice to get final redirected links | ||
| + | # final file is 3.txt, run `-i` on that | ||
| + | wget -O /dev/null $(cat i.txt) 2>&1 | grep -w ' | ||
| + | wget -O /dev/null $(cat 2.txt) 2>&1 | grep -w ' | ||
| + | gallery-dl -i 3.txt | ||
| + | </ | ||
