Created
March 9, 2015 11:33
-
-
Save donkaban/a0cf0545a2adca1d28b3 to your computer and use it in GitHub Desktop.
XCode Ram Disked
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
#!/bin/bash | |
rm -rf /Volumes/ramdisk | |
if [[ $(mount | awk '$3 == "/Volumes/ramdisk" {print $3}') != "" ]]; then | |
echo /Volumes/ramdisk is mounted | |
else | |
diskutil erasevolume HFS+ "ramdisk" `hdiutil attach -nomount ram://8475854` | |
fi | |
open -a Xcode |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment