Skip to content

Instantly share code, notes, and snippets.

@nicerobot
Created January 16, 2015 20:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicerobot/eac06e0ec29cdfa72ee0 to your computer and use it in GitHub Desktop.
Save nicerobot/eac06e0ec29cdfa72ee0 to your computer and use it in GitHub Desktop.
Mac OS X 100MB RAM Disk /Volumes/shm
#!/bin/bash
if [ -d /Volumes/shm ]; then
hdiutil detach /Volumes/shm
else
diskutil erasevolume HFS+ shm $(hdiutil attach -nomount ram://204800)
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment