Tagged Questions
6
votes
1answer
127 views
How do you pass the string “*.*” to ruby as a command line parameter?
code:
#test_argv.rb
puts "length: #{ARGV.length} "
ARGV.each do |a|
puts "Argument: #{a}"
end
If I supply the string "*.*" (with or without quotes) when I call the above, I get the ...
2
votes
1answer
107 views
Ruby: ARGV breaks accented characters
# encoding: utf-8
foo = "Résumé"
p foo
> "Résumé"
# encoding: utf-8
ARGV.each do |argument|
p argument
end
test.rb Résumé > "R\xE9sum\xE9"
Why does this occur, and how can I get ARGV to ...
2
votes
3answers
166 views
Ruby interpreter name
How do I get the currently running Ruby 1.8 interpreter name in Ruby (e.g. /usr/bin/ruby), i.e. the argv[0] passed to the C main() function. I'm not interested in $0, because that's the name of the ...
2
votes
4answers
1k views
Ruby's ARGV can be empty on windows depending on a way to run script
My demo.rb:
puts ARGV.size
ARGV.each do |a|
puts "Argument: #{a}"
end
The result depends on how we run a script:
> demo.rb foo bar
0
> ruby demo.rb foo bar
2
Argument: foo
Argument: bar
...