Introduction Just Getopt Parser is a Common Lisp package that implements Unix Getopt command-line parser. The intention is to be just that: the parser functionality with clear Lisp programming ...
(getopt '("-d3" "-f" "one" "--file=two" "-xyz" "foo" "--none" "bar" "-v" "--" "-v") '((:debug #\d :optional) (:file #\f :required) (:file "file" :required) (:verbose ...