Making sys.config file dynamic by passing argument to erl -config <file_name> [args]

174 Views Asked by At

In the below erl command I want to pass config file along with the arguments.

erl -config sys.config [Args]

1

There are 1 best solutions below

0
Wojtek Surowka On

The correct command line would be

erl -config sys [Args]

without the .config extension, which is added automatically.