我无法在子 shell 上设置 ulimit
我有一个 bash 脚本。此 bash 脚本需要每 5 分钟运行一次,因此我创建了以下代码块: #!/bin/bash ulimit -n 600000 ulimit -u 600000 echo -e "This is another bash script to run mybashscript.sh" # Lets create mycronscript.sh echo "#!/bin/bash ulimit -n 600000 ulimit -u 600000 while true; do sleep 300 bash mybashscript.s...