From df40244d2b526182696a73531478bd1c6da4b1c5 Mon Sep 17 00:00:00 2001 From: yuukiwww <0xv75b42326631e@au.com> Date: Wed, 31 Jul 2024 09:18:24 +0000 Subject: [PATCH] =?UTF-8?q?=E3=82=B9=E3=82=AF=E3=83=AA=E3=83=97=E3=83=88?= =?UTF-8?q?=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- download.sh | 3 +++ unzip.sh | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 download.sh create mode 100644 unzip.sh diff --git a/download.sh b/download.sh new file mode 100644 index 0000000..5ed5e17 --- /dev/null +++ b/download.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +wget -O - https://tjadataba.se/api/browse | jq -r ".[] | ._id" | xargs -I {} wget -O {}.zip https://tjadataba.se/download/orig/{} diff --git a/unzip.sh b/unzip.sh new file mode 100644 index 0000000..f8240e5 --- /dev/null +++ b/unzip.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +find . -type f -iname "*.zip" | xargs -I {} unzip -d {}_ {}