Yes, I want to remove all ulimits
and set them to unlimited
. How do I do this? Thanks!
相关问题
- Is shmid returned by shmget() unique across proces
- how to get running process information in java?
- JQ: Select when attribute value exists in a bash a
- Error building gcc 4.8.3 from source: libstdc++.so
- Why should we check WIFEXITED after wait in order
Use something like this:
Caution, check output of
ulimit -a | sed 's/.*\-\([a-z]\)[^a-zA-Z].*$/\1/'
first,ulimit -a
output may differ from system to system.