diff --git a/src/findutils/xargs/xargs.c b/src/findutils/xargs/xargs.c index a3c904e..9077c0b 100644 --- a/src/findutils/xargs/xargs.c +++ b/src/findutils/xargs/xargs.c @@ -127,7 +127,7 @@ int main(int argc, char **argv) { break; default: - printf("xargs [cmd [arg1] [arg2...]]\n\t[-t Print the command]\n\t[-n Pass no more than N args]\n\t[-r Don't run command if input is empty]\n"); + printf("xargs [cmd [arg1] [arg2...]]\n\t[-t Print the command]\n\t[-n Pass no more than N args]\n\t[-r Don't run command if input is empty]\n\t[-s Pass command line of no more than N bytes]\n"); return 0; } } @@ -137,6 +137,7 @@ int main(int argc, char **argv) { int ret = 0; while (1) { + /* Arg */ if (argc) { for (int i = 0; i < argc; i++)