Created
June 16, 2010 17:40
-
-
Save andyfowler/441010 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# import a directory into a case-sensitive DMG | |
dir="/Users/afowler/src/stuff" | |
hdiutil create -srcfolder "${dir}" -autostretch -fs JHFS+X temp.dmg | |
hdiutil attach -mountpoint "${dir}-caseSensitive" temp.dmg | |
# JHFS+X == journalled, case-sensitive. | |
# DMG is initially the directory size, but can grow as needed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment