Created
March 22, 2011 16:37
-
-
Save donpdonp/881526 to your computer and use it in GitHub Desktop.
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
donp@sparky:~$ ruby -e 'puts "Hello World."' | |
Hello World. | |
donp@sparky:~$ jruby -e 'puts "Hello World."' | |
donp@sparky:~$ |
it was my problem, lack of bash-foo.
/usr/local/bin/jruby was a shell script of "/usr/local/jruby/bin/jruby $"
the $ i thought would include all params but does not.
i changed it to a symlink and it works now.
that should read dollar-sign asterisk.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
D'oh. What's jruby's problem?