Postpostmodern » Terminal http://postpostmodern.com Speaking of web development. Wed, 11 Jan 2012 00:21:50 +0000 http://wordpress.org/?v=2.9.1 en hourly 1 Terminal Tip: Delete Those Mac Dot Files http://postpostmodern.com/2009/06/08/terminal-tip-delete-those-mac-dot-files/ http://postpostmodern.com/2009/06/08/terminal-tip-delete-those-mac-dot-files/#comments Mon, 08 Jun 2009 16:40:32 +0000 Jason Johnson http://postpostmodern.com/?p=396 Unzipping/untaring an archive that was created on a Mac can produce a lot of ._blah and .DS_Store files. Rid yourself of them with:

find . \( -name '._*' -o -name '.DS_Store' \) -exec rm {} \;

or, if you’re using GNU find (e.g. on Ubuntu) you can use -delete:

find . \( -name '._*' -o -name '.DS_Store' \) -delete

]]>
http://postpostmodern.com/2009/06/08/terminal-tip-delete-those-mac-dot-files/feed/ 4