This paste expires on 2023-04-12 21:35:25.481407. Repaste, or download this paste. . Pasted through web.

# prepare.sh
#/usr/bin/env sh
input_dir="./gesture_drawings"
for d in multi single; do
    sh download.sh "${input_dir}"/links_to_"${d}".txt "${input_dir}"/"${d}"/img/
done
# download.sh
#!/usr/bin/env sh
dli () {
    wget -nc -c "${2}" -O "${1}"/"${3}"
}
export -f dli
cat "${1}" | xargs -P 50 -n 2 sh -c 'dli '"${2}"' "$@"' _
Filename: None. Size: 357b. View raw, , hex, or download this file.