ulimit
[options] [n]Print the value of one or more resource limits, or, if n is specified, set a resource limit to n. Resource limits can be either hard (-H
) or soft (-S
). By default, ulimit sets both limits or prints the soft limit. The options determine which resource is acted on.
-H
Hard limit. Anyone can lower a hard limit; only privileged users can raise it.
-S
Soft limit. Must be lower than the hard limit.
-a
Print all limits.
-c
Maximum size of core files.
-d
Maximum kilobytes of data segment or heap.
-f
Maximum size of files (the default option).
-m
Maximum kilobytes of physical memory. Korn shell only. (Not effective on all Unix systems.)
-n
Maximum file descriptor plus 1.
-p
Size of pipe buffers. Korn shell only. (Not effective on all Unix systems.)
-s
Maximum kilobytes of stack segment.
-t
Maximum CPU seconds.
-v
Maximum kilobytes of virtual memory.