MUST HAVE SHELL SCRIPTS
Posted by Mišo Barišić on October 18, 2021 (3m read)
Must have scripts
If you're feeling spicy, you can use this script to randomly delete a file.
rm -rf $(find ~ | shuf -n 1) # or sudo rm -rf $(sudo find / | shuf -n 1)
Read also