CommandLineParser

A simple enough command line parser.

class Object
trait Matchable
class Any

Type members

Classlikes

Value members

Concrete methods

def tokenize(line: String, errorFn: String => Unit): List[String]

Split the line into tokens separated by whitespace or quotes.

Split the line into tokens separated by whitespace or quotes.

Invoke errorFn with message on bad quote.

def tokenize(line: String): List[String]