Find / GZIP

From Nocrashwiki
Revision as of 20:37, 4 August 2010 by Chris (talk | contribs) (Created page with "Find to exclude certain results. This will find all files in the current directory excluding .gz .png, .tif*, .mov, .gif and .jpg and others... find . -type f -not -name '*.gz'...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Find to exclude certain results.

This will find all files in the current directory excluding .gz .png, .tif*, .mov, .gif and .jpg and others...

find . -type f -not -name '*.gz' -not -name *.png -not -name '*.tif*' -not -name *.mov -not -name *.jpg -not -name '*.jpeg' -not -name '*.avi' -not -name *.gif -not -name '*.bz2' -not -name '*.zip' -not -name '*.rar' -exec gzip --best -v {} \;