stefanwagner
Programmer
When I call:
jar -cf ../blues.jar *
on bash, I get:
jar: Argument list too long
If I start an equivalent zip-command, I get
gzip: Argument list too long
I guess it is the bash, which tries to generate the list of all the files (about 42.000) and gets confused by to much files.
Is the limit of file-expansion a well-known bash-item?
Does it depend on the filename-length?
jar -cf ../blues.jar *
on bash, I get:
jar: Argument list too long
If I start an equivalent zip-command, I get
gzip: Argument list too long
I guess it is the bash, which tries to generate the list of all the files (about 42.000) and gets confused by to much files.
Is the limit of file-expansion a well-known bash-item?
Does it depend on the filename-length?