You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ autolab submit -f 15213-s23:attacklab test.txt
fatal: Invalid command line argument 'test.txt'.
Note that all options must come after all positional arguments (e.g. commands).
For detailed usage, run with '-h'.
This is an extremely strange thing for a Unix command line utility to insist on. I've been mucking around with Unix for 35 years and the only other examples I can think of are find (where the stuff that comes after the positional arguments is more accurately described as an expression in a mini-language, not options) and ld (where everyone agrees that it sucks that you have to put the -l options at the end of the link line).
Please change this to be more normal, by which I mean "options can appear in any order and in any position relative to the positional parameters." It's OK if "submit" has to come before options that are specific to the submit subcommand, but I should be allowed to do what I did in the example at the top.
The text was updated successfully, but these errors were encountered:
This is an extremely strange thing for a Unix command line utility to insist on. I've been mucking around with Unix for 35 years and the only other examples I can think of are
find
(where the stuff that comes after the positional arguments is more accurately described as an expression in a mini-language, not options) andld
(where everyone agrees that it sucks that you have to put the-l
options at the end of the link line).Please change this to be more normal, by which I mean "options can appear in any order and in any position relative to the positional parameters." It's OK if "submit" has to come before options that are specific to the
submit
subcommand, but I should be allowed to do what I did in the example at the top.The text was updated successfully, but these errors were encountered: