stevset/scripts/server_bin/update_itaku.sh
2022-11-26 17:45:55 -05:00

11 lines
215 B
Bash
Executable file

#!/bin/bash
N=2
cd $HOME/gallery-dl/itaku
for i in *; do
echo ">> $i"
(gallery-dl --abort 3 --sleep 2 https://itaku.ee/profile/$i/gallery) &
if [[ $(jobs -r -p | wc -l) -ge $N ]]; then
wait -n
fi
done