1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 12:42:07 +02:00
tldr/pages/linux/ulimit.md
2016-01-08 09:38:59 +01:00

19 lines
309 B
Markdown

# 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`