Tagged Questions
0
votes
4answers
2k views
Apache Ant command line arguments without double quotes - is it possible?
Today I had to add a task to an Apache Ant file. The command line should have been something like
myprogram --param1 --param2 path\somefile 2> path\logfile
The problem with this was that if I ...
0
votes
2answers
188 views
Mixing Single and Double Quotations in Bash
Alright, I have a script that takes a few arguments, runs data, and then rsyncs the data out to a different server. The problem is that to run the data, I have to take one of the arguments and then ...