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
There are a few options in coreutils which accept lists of values, e.g.
cut --fields
chroot --groups
Sometimes these are additive, sometimes they override and sometimes they can only be passed once.
We need to figure out a way to deal with these case. The overriding case is easy (just parse into a vec and override the vec like any other value). Additive and only once are harder cases.
The text was updated successfully, but these errors were encountered:
There are a few options in coreutils which accept lists of values, e.g.
cut --fields
chroot --groups
Sometimes these are additive, sometimes they override and sometimes they can only be passed once.
We need to figure out a way to deal with these case. The overriding case is easy (just parse into a vec and override the vec like any other value). Additive and only once are harder cases.
The text was updated successfully, but these errors were encountered: