Last active
August 29, 2015 14:06
-
-
Save agargiulo/21b8897cef5cf62ee4a0 to your computer and use it in GitHub Desktop.
Learning Ruby, got lazy so this was made.
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
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