hi, I have build a Batch-file for processing OSM. i whant to call Osmosis multiple times and call an other program after that so i do that:
but after osmosis the "test" wouldn't be printed. the only result is that:
where is the "test"? asked 10 May '11, 14:25 josias |
There are a couple of things you might want to try. You could for example try adding call before the osmosis line to see if that completes the osmosis line before returning to the batch file. Alternatively you could put multiple commands on a single line separated by && as per the batch file I use for keeping a local .osm file synced (imagine that the following is all on a single line):
answered 10 May '11, 14:44 EdLoach ♦ 1
Using CALL works for me in a test batch script. Very useful answer. You could also use cygwin which will run the osmosis.bat DOS batch file successfully.
(10 May '11, 15:04)
SK53 ♦
|