Initial commit of files

This commit is contained in:
2021-01-22 10:13:40 -05:00
parent 7081dcecc5
commit 56aa3a219b
47 changed files with 2157 additions and 0 deletions

31
bin/self-sanitize.sh Executable file
View File

@ -0,0 +1,31 @@
#!/bin/sh
cd $HOME
# kill running stuff
killall chrome
killall firefox
killall firefox-esr
killall icedove
killall iceweasel
killall ssh
# stop the jobs
crontab -r
# delete the hidden
rm -rf .dropbox* .gitconfig .gnupg .icedove .mozilla .pki .ssh .subversion
rm -rf `find . -name google-chrome`
echo "Privatized!"
# delete the obvious (slow)
for i in Archive Dropbox Gits ProbeStar NTCNA/ProberN
do
rm -rf $i
echo "Scrubbed: $i"
done
# done
echo "Sanitized!"
sudo shutdown now