This commit is contained in:
2026-05-23 04:56:55 -06:00
parent 38aff02921
commit a765531e2e
3 changed files with 15 additions and 3 deletions
Submodule Encrypt-Share-Attribution added at e2a3f08b51
-3
View File
@@ -1,3 +0,0 @@
#!/bin/bash
echo "autodeleting these files:"
find -type f -not -path "*/.git*" \( -name "*.sha512" -o -name "checksums*" -o -name "private*" -o -name ".*" -o -name "*.sig" -o -name "*.7z" -o -name "anonymous_signer" \) -print -delete
+14
View File
@@ -0,0 +1,14 @@
#!/bin/bash
echo "autoshredding these files:"
find . -type f \( -path ".git" -o -path "keystore" -o -path "archives" \) -prune \( -name "*.sha512" -o -name "checksums*" -o -name "private*" -o -name ".*" -o -name "*.sig" -o -name "*.7z" -o -name "anonymous_signer" \) -print -delete
echo "autoshredding out"
srm -r out
echo "rebuilding out"
mkdir -p out/contents
echo "put files to verifiably archive in here" > out/contents/README.md
echo "# todo: make this nice" > out/README.md
echo done :3