1

Basic age stuff

This commit is contained in:
Evan Pratten 2024-12-19 22:29:45 -05:00
parent 0cc21364ca
commit 8d70a8ed89
2 changed files with 28 additions and 0 deletions

18
scripts/age-open Executable file
View File

@ -0,0 +1,18 @@
#! /bin/bash
set -e
# Require an AGE-encrypted file
if [ $# != 1 ]; then
echo "Usage: $(basename $0) <file>"
exit 1
fi
# Decrypt the file to temp
age -d "$1" > /tmp/$(echo "$1" | sed 's/\.age$//')
# Open the decrypted file
open /tmp/$(echo "$1" | sed 's/\.age$//') &
# Remove the decrypted file
sleep 10
rm /tmp/$(echo "$1" | sed 's/\.age$//')

10
scripts/dlcrypt Executable file
View File

@ -0,0 +1,10 @@
#! /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"