Snippets::CParser
From WorkCDN
Command line parser allowing for parsing command line arguments similar to those of many GNU style application. It has one major difference in that for single character options, the arguments need not come immediately after the option, but can be listed in the given order after the group of single character options. So that a command usually written as: command -a 10 -b 20 could be written as command -ab 10 20 or command -ba 20 10
