On Sun, Feb 5, 2012 at 16:04, frantisek holop <[email protected]> wrote: > command [options] [arguments] > > works quite well. in the fossil help, ?OPTIONS? is sometimes before, > sometimes after the arguments. >
Hi Frantisek, being another recent fossil newcomer I am doing my share of learning and going through the source code. Fossil parses options by calling find_option function that will locate an option almost anywhere on the command line. There is one exception, though. Double-dash "--" by itself terminates options search. Everything that follows it on a command-line are considered non-options (filenames, ...) even if it starts with dashes. --Leo-- _______________________________________________ fossil-users mailing list [email protected] http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

