ambevar-dotfiles/.scripts/wget-batch

9 lines
115 B
Bash
Executable File

#!/bin/sh
if [ $# -ne 2 ]; then
echo "Usage: ${0##*/} EXT URI"
exit
fi
wget -r -l1 --no-parent -A$1 "$2"