ThanOS: an OS where any time you click the mouse, every file has a 50/50 chance of being deleted
I could make that into a bash script if i wasn’t a lazy ass.
It’s like the Suicide Linux package that interprets every unknown command as “rm -rf /” but it only deletes half the files and it does that every time you want to do anything at all.
Thanos only did it once though.
I mean, so would you, probably :p
Wrote a 10 line bash script to Thanos snap everything in the current directory. (Started everything with thanos_ to avoid any issues with Ubuntu snap packages)
#! /bin/bash
thanos_snapall(){
for var in “$@”
do thanos_snap $var
done
}
thanos_snap(){
if (( $RANDOM % 2 == 0 )); then rm -f $1; fi
}
find -print0 -type f | xargs -0 thanos_snapallDo you fools not know the danger that you play with
Perfectly balanced, as all things should be