| 348 | | // changed to infile, infile_base, outfile respectively. |
|---|
| 349 | | string const token_from = "$$i"; |
|---|
| 350 | | string const token_base = "$$b"; |
|---|
| 351 | | string const token_to = "$$o"; |
|---|
| | 348 | // changed to infile, infile_base, outfile and output directory respectively. |
|---|
| | 349 | string const token_from = "$$i"; |
|---|
| | 350 | string const token_base = "$$b"; |
|---|
| | 351 | string const token_to = "$$o"; |
|---|
| | 352 | string const token_todir = "$$d"; |
|---|
| 375 | | command = subst(command, token_from, "' + '\"' + infile + '\"' + '"); |
|---|
| 376 | | command = subst(command, token_base, "' + '\"' + infile_base + '\"' + '"); |
|---|
| 377 | | command = subst(command, token_to, "' + '\"' + outfile + '\"' + '"); |
|---|
| | 377 | command = subst(command, token_from, "' + '\"' + infile + '\"' + '"); |
|---|
| | 378 | command = subst(command, token_base, "' + '\"' + infile_base + '\"' + '"); |
|---|
| | 379 | command = subst(command, token_to, "' + '\"' + outfile + '\"' + '"); |
|---|
| | 380 | command = subst(command, token_todir, "' + '\"' + outdir + '\"' + '"); |
|---|