This software uses GNU unix style o command line aruments
There are 2 styles of command line options available
You can use any type of options or combnation of both, in this applcation.
You can use long options in one of the following ways
ExcelCompare.exe --LongOption="This is new option"
ExcelCompare.exe --LongOption "This is new option"
Quotes are not manditory if your argument does not have {SPACE}
You can use long options in one of the following ways
ExcelCompare.exe -s "I am using small option"
ExcelCompare.exe -s"I am using small option"
ExcelCompare.exe -s "I am using small option"
Quotes are not manditory if your argument does not have {SPACE}
Switch are nothing but Command line options of type boolean.
If You want the option to be set you have to use switch with out any argument(Example:ExcelCompare.exe --ignore-case)
If there are several switches in aruments, You can use several switches using single '-' .
Below 3 notations are same
ExcelCompare.exe -xyz
ExcelCompare.exe -xy -z
ExcelCompare.exe -x -y -z
You can not use the multiple switches using single '-' ,if you are using long options
This application is still under development. We will add more options soon