On Tue, Jun 05, 2001 at 03:28:02PM -0400, eric.deandrea wrote:
> i am running rsync from a shell script out of cron to transfer a module
> between 2 solaris servers. I am getting the error "Argument too long". What
> does that mean? I can run the rsync command without a problem from the
> command line. Its only when the rsync command is started from inside the
> shell script that I have the problem.
That message does not exist in the rsync source code, although there is a
Unix error code E2BIG that on solaris is defined as "Arg list too long".
Is that what you saw? I've only seen it when doing an exec of a program
when the size of the argument list plus the size of the environment are
larger than a system-defined limit.
- Dave Dykstra