vote up 0 vote down star

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.

flag

1 Answer

vote up 3 vote down check

Just ask sysconf:

    os.sysconf(os.sysconf_names['SC_ARG_MAX'])

link|flag
Now why couldn't I find that? Thanks! Alas, it doesn't work on my Windows system, but that may be okay. However, I expect I'll need to make it work on a Mac, even though I don't have access to one. Do you know if sysconf is available on OS X? – PTBNL Sep 30 at 21:11
Should work fine on OS X. – Alex Martelli Sep 30 at 22:00
1  
The docs state this is for Unix only (both Mac and Unix for <= Python2.5). Also the dictionary lookup is not required, os.sysconf('SC_ARG_MAX') also works. – mhawke Oct 1 at 4:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.