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
where the first {} should be interpolated and the second should not?
xargs allows the substitution token to be customized with the -I option, as does GNU parallel. The latest version of map allows its substitution token (%) to be escaped in the same way as sprintf (%%).
Currently, gargs doesn't provide a way to do this for {}, or for {1}, {2} etc. I haven't run into this yet with gargs, but I've run into it in the past with xargs (and with map).
The text was updated successfully, but these errors were encountered:
How would one run a command that includes
{}
or{1}
? e.g.:where the first
{}
should be interpolated and the second should not?xargs
allows the substitution token to be customized with the-I
option, as does GNU parallel. The latest version ofmap
allows its substitution token (%
) to be escaped in the same way assprintf
(%%
).Currently,
gargs
doesn't provide a way to do this for{}
, or for{1}
,{2}
etc. I haven't run into this yet withgargs
, but I've run into it in the past withxargs
(and withmap
).The text was updated successfully, but these errors were encountered: