From a765531e2e20a2e02de7549236af2f90fc763b40 Mon Sep 17 00:00:00 2001 From: PrincessPi3 Date: Sat, 23 May 2026 04:56:55 -0600 Subject: [PATCH] workan --- Encrypt-Share-Attribution | 1 + cleanup.sh | 3 --- reset.sh | 14 ++++++++++++++ 3 files changed, 15 insertions(+), 3 deletions(-) create mode 160000 Encrypt-Share-Attribution delete mode 100755 cleanup.sh create mode 100644 reset.sh diff --git a/Encrypt-Share-Attribution b/Encrypt-Share-Attribution new file mode 160000 index 0000000..e2a3f08 --- /dev/null +++ b/Encrypt-Share-Attribution @@ -0,0 +1 @@ +Subproject commit e2a3f08b51ff9cf1f939faddf55085ef1f15a055 diff --git a/cleanup.sh b/cleanup.sh deleted file mode 100755 index 9f7aa81..0000000 --- a/cleanup.sh +++ /dev/null @@ -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 diff --git a/reset.sh b/reset.sh new file mode 100644 index 0000000..c4dffc4 --- /dev/null +++ b/reset.sh @@ -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 +