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 December 13, 2023 02:40
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