mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-01 17:38:29 +01:00
309 B
309 B
ulimit
Get and set user limits.
- Get the properties of all the user limits:
ulimit -a
- Get hard limit for the number of simultaneously opened files:
ulimit -H -n
- Get soft limit for the number of simultaneously opened files:
ulimit -S -n
- Set max per-user process limit:
ulimit -u 30