10 lines
171 B
Bash
Executable File
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" |