1
ewconfig/scripts/dlcrypt
2024-12-19 22:29:45 -05:00

10 lines
171 B
Bash
Executable File

#! /bin/bash
set -e
# Require an output path and a URL
if [ $# != 2 ]; then
echo "Usage: $(basename $0) <output> <url>"
exit 1
fi
age -p <(curl -sSL "$2") > "$1"