This commit is contained in:
Your Name 2024-01-15 22:29:43 +03:00
parent 4db9aca899
commit a6e644aab0
1 changed files with 2 additions and 1 deletions

View File

@ -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++)