1
0
Fork 0
mirror of https://github.com/imjasonh/urls synced 2026-07-08 07:25:25 +00:00
urls/crawl.sh
2023-01-25 11:14:39 -05:00

8 lines
130 B
Bash
Executable file

#! /usr/bin/env bash
while read l; do
fn=${l#"https://"}
echo $fn
mkdir -p $(dirname $fn)
curl -o $fn $l
done < urls.txt