Is there any limit of arguments that could be passed to C/C++, Python, Bash etc. program? Practical usage: pass bitmap data from/to C++ to/from Python program via arguments.
Asked
Active
Viewed 43 times
1
-
2http://stackoverflow.com/questions/6846263/maximum-length-of-command-line-argument-that-can-be-passed-to-sqlplus-from-lin – muru Feb 15 '15 at 11:32
-
4Also http://unix.stackexchange.com/questions/120642/what-defines-the-maximum-size-for-a-command-single-argument – muru Feb 15 '15 at 11:32
-
3Using a stream (e.g., standard input) would be the normal way to do this. – goldilocks Feb 15 '15 at 13:04