Differences

This shows you the differences between two versions of the page.

Link to this comparison view

topics:osx-compress [2017/03/26 04:51] (current)
orzfly created
Line 1: Line 1:
 +====== Use HFS+ Compress on OS X ======
  
 +<code>brew install afsctool</code>
 +
 +<code>
 +sudo afsctool -s 10 -c /Applications/Xcode.app/Contents/Developer/Platforms
 +
 +for i in \
 +  /Applications/Adobe* \
 +  /Applications/Utilities/Adobe* \
 +  /Library/Application\ Support/Adobe \
 +; do sudo afsctool -s 10 -c "$i"; done
 +
 +for i in \
 +  /Applications/Microsoft\ Excel.app \
 +  /Applications/Microsoft\ PowerPoint.app \
 +  /Applications/Microsoft\ Word.app \
 +; do sudo afsctool -s 10 -c "$i"; done
 +</code>
 +
 +{{tag>hfs osx compress}}