Why does this command fail when I use a # in command line args?

578 Views Asked by At

I have the following command:

ruby SaveAllDatabases.rb 192.168.0.15 1024 -r #0-D --non-interactive

It's a fairly basic command in which I run a ruby script with some command line arguments. The -r argument is a regular expression (#0-D).

If I run this command on Windows (using the standard Windows command prompt), everything runs as expected, but if I try and run the same command on Linux (with the same version of ruby installed). I get the following error:

/usr/lib/ruby/1.8/optparse.rb:451:in `parse': missing argument: -r (OptionParser::MissingArgument)
  from /usr/lib/ruby/1.8/optparse.rb:1295:in `parse_in_order'
  from /usr/lib/ruby/1.8/optparse.rb:1254:in `catch'
  from /usr/lib/ruby/1.8/optparse.rb:1254:in `parse_in_order'
  from /usr/lib/ruby/1.8/optparse.rb:1248:in `order!'
  from /usr/lib/ruby/1.8/optparse.rb:1339:in `permute!'
  from /usr/lib/ruby/1.8/optparse.rb:1360:in `parse!'
  from SaveAllDatabases.rb:256

If I take the hash/pound (#) symbol out of the regex, the command runs fine. I've done a test, and the command line doesn't seem pass anything after the # into the argv array.

Why is this, and how can I work round it?

4

There are 4 best solutions below

1
On BEST ANSWER

Take a look at the highlighting on your posted code. Notice how the # and everything after it are in gray? This is how you do comments in bash. Everything after the # is considered a comment.

echo "This will show on the screen" # This is a comment, it's ignored 

The solution is to quote the comment:

ruby SaveAllDatabases.rb 192.168.0.15 1024 -r '#0-D' --non-interactive

EDIT: Here's a link with more information.

0
On

Quote the argument. # starts a comment in most shells.

$ ruby foo.rb hello there -r #wat
hello
there
-r
$ ruby foo.rb hello there -r "#wat"
hello
there
-r
#wat
0
On

'#' is a comment on certain command-lines. everything after that is ignored.

0
On

# on the command line starts a comment, just as it would in a shell script.

marc@panic:~$ whoami #--help
marc
marc@panic:~$ whoami --help
Usage: whoami [OPTION]...

You'll have to escape it: \#0-D