Add answer for kub
Signed-off-by: Arnaud M <arnaud.choupinette@mailops.fr>
This commit is contained in:
7
kubernetes/training/lessons/uncipher.sh
Executable file
7
kubernetes/training/lessons/uncipher.sh
Executable file
@@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
find . -name '*.gpg' | while read f ; do
|
||||
echo "Unciphering $f"
|
||||
n=${f%.gpg}
|
||||
cat $f | gpg -d > $n
|
||||
done
|
||||
Reference in New Issue
Block a user