Argument Files

Collect argument sets into files

Sometimes you don't want to specify the command-line arguments in the Console window. Instead, you put the arguments into a file.

Create a file called devsystem.profile with the following content:

# This is a comment
/url http://devsystem
 
/username developer
/password 12345

And run your command and use the @ character to specify a file containing arguments.

> demo6app API /p1=p1111 @devsystem.profile

P1      = p1111
Url     = http://devsystem
Username= developer
Password= 12345

Last updated