3 examples for ulimit

{{ score }}
  # Set maximum limit of file descriptors open at once to 10000
ulimit -n 10000
        
{{ score }}
  # Show maximum number of file descriptors open at once
ulimit -n
        
{{ score }}
  # Show all current limits
ulimit -a