Añadir nuevos

This commit is contained in:
Moribundo 2020-05-07 16:02:16 +02:00
parent 87ce308bf0
commit 9e9f8bbc5a
4 changed files with 25 additions and 0 deletions

7
XFE/cifrar Executable file
View File

@ -0,0 +1,7 @@
#!/bin/sh
for arg
do
gpg -er "Moribundo Insurgente" "$arg"
done

8
XFE/descifrar Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
#!/bin/sh
for arg
do
gpg -d "$arg" > "$arg".desc
done

5
XFE/shred Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh
for arg
do
shred -vu -n10 "$arg"
done

5
XFE/srm Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh
for arg
do
srm -rv "$arg"
done