mirror of
https://github.com/imjasonh/urls
synced 2026-07-08 15:35:29 +00:00
13 lines
211 B
Bash
Executable file
13 lines
211 B
Bash
Executable file
#! /usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
while read l; do
|
|
[[ -z $l ]] && continue
|
|
[[ $l =~ ^#.* ]] && continue
|
|
|
|
fn=${l#"https://"}
|
|
echo $fn
|
|
mkdir -p $(dirname $fn)
|
|
curl $l | jq > $fn
|
|
done < urls.txt
|