Introduction
Introduction Statistics Contact Development Disclaimer Help
xargs: Add -x when -I is used - sbase - suckless unix tools
git clone git://git.suckless.org/sbase
Log
Files
Refs
README
LICENSE
---
commit b3a80526345ec4d3fb69f7cd2844788b7347ac15
parent 8d97acc135239e7fae906e5fd3c479af240b3dea
Author: Roberto E. Vargas Caballero <[email protected]>
Date: Fri, 22 Sep 2023 10:37:18 +0200
xargs: Add -x when -I is used
POSIX mandates to use -x when -I is used.
Diffstat:
M xargs.c | 1 +
1 file changed, 1 insertion(+), 0 deletions(-)
---
diff --git a/xargs.c b/xargs.c
@@ -227,6 +227,7 @@ main(int argc, char *argv[])
eofstr = EARGF(usage());
break;
case 'I':
+ xflag = 1;
nflag = 1;
maxargs = 1;
replstr = EARGF(usage());
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.