Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望我的 perl 脚本的所有子进程在发生意外故障时生成核心文件。那么如何设置ulimit到unlimitedperl 内部呢?
ulimit
unlimited
您必须更改启动 perl 脚本的用户的 openfiles 参数。因此,您可以通过以下方式即时更改限制:
ulimit -n unlimited && perl path/to/your/script.pl
或者你可以制作一个 bash 脚本foo.sh:
foo.sh
#!/bin/bash ulimit -n unlimited perl path/to/your/script.pl