habvi / 42_minishell

Re-implemented a simple shell.
4 stars 0 forks source link

set limit comnand-line input length #249

Closed habvi closed 1 year ago

habvi commented 1 year ago

stack overflow

cmd=`python3 -c "x=38000; print('( '*x + 'echo a' + ' )'*x)"` && echo "$cmd" | ./minishell

ここまでは耐え。どこら辺を limit に設定するか…?

cmd=`python3 -c "x=37390; print('( '*x + 'echo a' + ' )'*x)"` && echo "$cmd" | ./minishell
cmd=`python3 -c "x=4998; print('( '*x + 'echo a' + ' )'*x)"` && echo "$cmd" | bash