Command-line Arguments Configuration
A configuration file format that is the same as command-line arguments.
- Write all the arguments into a file, and then run the command with the filename. The effect will be the same
- Supports multiple arguments on separate lines
- Ignore blank lines and comments lines starting with
#
command argument1 argument2 argument3
argument1 argument2 argument3
or
argument1 argument2
argument3
or
# this is comment
argument1
# this is comment too
argument2
argument3
command /path/to/cac
PR your implementation here