Last active
November 23, 2015 01:16
-
-
Save koki-h/9e004e2d683ec31fe00a to your computer and use it in GitHub Desktop.
WEB上のソースコードのURLを指定して実行
This file contains hidden or 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
| #!/bin/bash | |
| curl $1 | ruby | |
| # How to use | |
| # $ ./git-exec-ruby.sh https://gist.githubusercontent.com/koki-h/9e004e2d683ec31fe00a/raw/2da2caf0b1ed6b69b0f396a2ee0389882ebb4841/sample.rb | |
| #こういうの↓を実行するとき便利 | |
| # https://github.com/mame/trance-book |
This file contains hidden or 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
| puts "Hello! World!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment