Created
March 16, 2009 12:01
-
-
Save kogakure/79851 to your computer and use it in GitHub Desktop.
Bash: Get rid of those nasty files from Frontpage, WSFTP, etc.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
find . -name _vti_cnf -exec rm -rf {} \; | |
find . -name _borders -exec rm -rf {} \; | |
find . -name _private -exec rm -rf {} \; | |
find . -name _vti_pvt -exec rm -rf {} \; | |
find . -name _vti_txt -exec rm -rf {} \; | |
find . -name _vti_script -exec rm -rf {} \; | |
find . -name .DS_Store -exec rm -rf {} \; | |
find . -name WS_FTP.LOG -exec rm -rf {} \; | |
find . -name desktop.ini -exec rm -rf {} \; | |
find . -name Thumbs.db -exec rm -rf {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment