Skip to content

Instantly share code, notes, and snippets.

View gonzalezfj's full-sized avatar
🏠
Working from home

Facundo J Gonzalez gonzalezfj

🏠
Working from home
View GitHub Profile
@rxin
rxin / ramdisk.sh
Last active November 21, 2024 15:11
ramdisk create/delete on Mac OS X.
#!/bin/bash
# From http://tech.serbinn.net/2010/shell-script-to-create-ramdisk-on-mac-os-x/
#
ARGS=2
E_BADARGS=99
if [ $# -ne $ARGS ] # correct number of arguments to the script;
then