8 lines
120 B
Bash
Executable File
8 lines
120 B
Bash
Executable File
#!/bin/bash
|
|
|
|
find . -name '*.gpg' | while read f ; do
|
|
echo "Unciphering $f"
|
|
n=${f%.gpg}
|
|
cat $f | gpg -d > $n
|
|
done
|