You can try:
$ getconf ARG_MAX
2180000
http://pubs.opengroup.org/onlinepubs/007904975/basedefs/limits.h.html
ARG_MAX - maximum argument length for exec functions, including environment data.
That is, there is no individual restriction on the number of arguments or the length of the argument. Only a limit on the total size needed to store all arguments and environment variables.
xargs , sysconf(_SC_ARG_MAX);, , getconf ARG_MAX.
Linux . , / . :
#define MAX_ARG_STRLEN (PAGE_SIZE * 32)
#define MAX_ARG_STRINGS 0x7FFFFFFF