限制通过 shell 脚本执行的程序的 RAM 使用量
我需要将程序的内存 (RAM) 使用量限制为 100mb。 我正在使用 shell 脚本执行一批它们,并且想知道如何做到这一点。 我从类的源代码进行编译,然后使用 time 命令存储实际运行时间。 只是想知道如何将每个内存使用量限制为 100mb。
I need to limit the memory(RAM) usage of a program to just 100mb.
I am executing a batch of them using a shell script and wanted to know how to do that.
I am compiling from source of my class and then storing the real run time using the time command.
Just wanted to know how to limit the memory usage of each to 100mb.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
ulimit -m
。输入help ulimit
和/或输入ulimit -a
以获取完整列表You can play around with
ulimit -m
. Typehelp ulimit
and/or typeulimit -a
to get a full list