7 lines
106 B
Bash
Executable File
7 lines
106 B
Bash
Executable File
#!/bin/bash
|
|
|
|
f=user-data-install-demo-flask.sh.gpg
|
|
echo "Unciphering $f"
|
|
n=${f%.gpg}
|
|
cat $f | gpg -d > $n
|