Basic age stuff
This commit is contained in:
parent
0cc21364ca
commit
8d70a8ed89
18
scripts/age-open
Executable file
18
scripts/age-open
Executable 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
10
scripts/dlcrypt
Executable 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"
|
Loading…
x
Reference in New Issue
Block a user