1
0
Fork 0
trainings/terraform/training/files/uncipher.sh

8 lines
111 B
Bash
Executable File

#!/bin/bash
ls -1 *.gpg | while read f ; do
echo "Unciphering $f"
n=${f%.gpg}
cat $f | gpg -d > $n
done