Thursday, August 16, 2012

Remove .DS_Store & git File using Terminal


To Remove .DS_Store File:-

cd <ur path> 
find . -name '*.DS_Store' -type f -delete

To Remove Git File:-

cd <ur path> 
find . -name '*.git' -type f -delete

No comments:

Post a Comment