-
Notifications
You must be signed in to change notification settings - Fork 1.9k
SC2267
Vidar Holen edited this page Oct 19, 2020
·
3 revisions
# Implicit replacement string
xargs -i ls {}
# Explicit replacement string
xargs -imyfilename ls myfilenamexargs -I {} ls {}
xargs -I filename ls filenamexargs -i is a GNU specific option. It has been deprecated in favor of the POSIX standard option -I.
Note that -i will implicitly use {} as a token if nothing is specified, while -I requires it to be explicit.
None.
- Help by adding links to BashFAQ, StackOverflow, man pages, POSIX, etc!