I'd like to put some Scala scripts into a batch file. If you just print the arguments, the canonical way would be like this:
::#!
@echo off
scala %0 %*
goto :eof
::!#
args foreach println
(This actually calls another batch script, scala.bat from the bin-directory of Scala). If I try to pass an argument containing parentheses to it, the windows command line interpreter complains with a syntax error:
printargs.bat "foo(bar)baz"
Strangely, if I create a scala file printargs.scala containing just args foreach println, this works correctly:
scala printargs.scala "foo(bar)baz"
So I assume this is not a bug in scala.bat. But what can I do?
Update: the actual error occurs in the following line in scala.bat:
set _ARGS=%*
with the error message
baz was unexpected at this time
If I change scala.bat that it does not use a local variable but use %* directly, it works correctly. So I filed a bug-report. The question remains if there is a workaround for this problem until the bug is fixed.
D:\Download>printargs foo(bar)baz=>baz was unexpected at this time. There is no error when I have "foo(bar)baz" quoted. The message if from scala.bat, the real one in Scala's bin/ directory. It seems to be related to the closing paren ')' character. – frayser Dec 16 '10 at 9:38