I tried
locate ~/*.DS_Store | rm -fvbut it doesn't work. I'm probably using the '|' all wrong.
And yes, I know I can tell Finder to not create .DS_Store files, but still.
Posted 29 July 2009 - 09:37 AM
locate ~/*.DS_Store | rm -fvbut it doesn't work. I'm probably using the '|' all wrong.
Posted 29 July 2009 - 11:07 PM
Posted 30 July 2009 - 12:20 AM
find . -name .DS_Store -print0 | xargs -0 rm -rf
find . -name .DS_Store -exec 'rm -rf {};'

Please do not PM me for support (unless its a private matter). Instead, post in the appropriate forum and help will be provided accordingly.
Helpful links: Terms of Service | Privacy Policy | Wiki - Tutorials & Help | VlexoFree Support |
Posted 30 July 2009 - 11:34 AM
find ~ -name .DS_Store -print0 | xargs -0 rm -rfHow would I remove all files beginning with (or containing, if that is easier) ".wysiwygPro_edit_" (those HTML editor files)?
Posted 06 April 2011 - 09:10 AM
Sean Zhu, on 30 July 2009 - 11:34 AM, said:
Sean Zhu, on 30 July 2009 - 11:34 AM, said:
find $HOME -name ".wysiwygPro_edit_*" -exec rm {} \;
0 members, 0 guests, 0 anonymous users