Does anyone know a portable way for Python to determine a system's maximum command line length? The program I'm working on builds a command and feeds it to subprocess. For systems with smaller command line length maximums, it is possible that the command will be too long. If I can detect that, the command can be broken up to avoid exceeding the maximum length, but I've not found a (portable) way to determine the maximum.
|
|
|
|
|
|
|
Just ask sysconf:
os.sysconf(os.sysconf_names['SC_ARG_MAX'])
|
||||||||
|
