Description: same as Remove Hidden Backup files in current Di fresh but also deletes .old and .bak files - THIS IS VERY POWERFUL,
WARNING: THIS WILL DELETE ANY FILE(S) MARKED WITH THE EXTENSION ~; .OLD, old; .BAK, bak in one full swoop, Folders are Excluded from Deletion.Last changelog:
I love this one. It does everything any complete n00b wants to do if they want to total wreck their install.
Don't bother with the download, here's the script:
#!/usr/bin/env bash
zenity --info --text "Forever Gone."
rm *~
rm .*~
rm *.old
rm *.bak
rm *.OLD
rm *.BAK
It's just a shame the author is clueless about UNIX file permissions, or this would be a great script.
Ratings & Comments
1 Comment
I love this one. It does everything any complete n00b wants to do if they want to total wreck their install. Don't bother with the download, here's the script: #!/usr/bin/env bash zenity --info --text "Forever Gone." rm *~ rm .*~ rm *.old rm *.bak rm *.OLD rm *.BAK It's just a shame the author is clueless about UNIX file permissions, or this would be a great script.