Skip to content

utibenkei/getopt

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

GETOPT
======
Utility to parse command line arguments using same/similar conventions as the Unix getopt() function.


USAGE
-----

# Create a instance of the parser
var go = new Getopt();

# Add command line options to parse
# For example, to store a string value into the field 'f'
go.addSwitch( ["f"], store( "filename", TString ) );

# Parse an array of arguments (like returned by neko.Sys.args())
go.parse( ["-f","myfile"] );
# Or
go.parseString( "-f myfile" );

# Your value is now available at
trace( go.opt.filename ); // myfile

Releases

No releases published

Packages

No packages published

Languages

  • Haxe 100.0%