Skip to content

Instantly share code, notes, and snippets.

@agargiulo
Last active August 29, 2015 14:06
Show Gist options
  • Save agargiulo/21b8897cef5cf62ee4a0 to your computer and use it in GitHub Desktop.
Save agargiulo/21b8897cef5cf62ee4a0 to your computer and use it in GitHub Desktop.
Learning Ruby, got lazy so this was made.
lrb () {
filename="ex${1}.rb"
shift
if [[ -e $filename ]]
then
vim $filename
else
vim $filename +startinsert
fi
if [[ -e $filename ]]
then
ruby $filename $*
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment