summaryrefslogtreecommitdiff
path: root/home/xyz/.config/myconf/gallery_urls
blob: 0f128ec3dfb65e4e27630c3222e57718de20e99c (plain)
1
2
3
4
5
# input file format see https://github.com/mikf/gallery-dl/blob/13d4045a8a5a6fd45cb20df399f44055b25f5cca/gallery_dl/__init__.py#L33-L58
#https://www.pixiv.net/users/13379747/artworks
https://www.deviantart.com/wlop/gallery
https://www.deviantart.com/minimalistic-animoo/gallery/
https://www.deviantart.com/theminimalists/gallery/
#!/bin/sh # DATE From To while getopts cfF:t:T: opt; do case $opt in c) tz_from="Asia/Shanghai";; f) tz_from="$(tzselect)";; F) tz_from="$OPTARG";; # one extra ',' at the end will not let `for tz in ...` loop one extra time? t) for i in $(seq "$OPTARG"); do tz_to="$(tzselect),$tz_to" done;; T) tz_to="$OPTARG,$tz_to";; \?) exit 1;; esac done shift $((OPTIND-1))