Download raw body.
env: -u name
> Feedback? Objection? OK? > - while ((ch = getopt(argc, argv, "i-")) != -1) > + while ((ch = getopt(argc, argv, "-iu:")) != -1) Having - in the first position of opstring is special. This breaks setting environment variables. $ env FOO=foo usage: env [-i] [-u name] [name=value ...] [utility [argument ...]] Could someone please revert or fix this?
env: -u name