mirror of
https://github.com/imjasonh/urls
synced 2026-07-08 07:25:25 +00:00
8 lines
130 B
Bash
Executable file
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
|