Forrest logo
back to context overview

getconf

List of commands for getconf:

  • getconf:ai:ca1c7 Returns the maximum filename length (including path) in the specified directory
    $ getconf NAME_MAX ${path}
    try on your machine
    explain this command
  • getconf:tldr:15cf9 getconf: List the configuration values for a specific directory.
    $ getconf -a ${path-to-directory}
    try on your machine
    explain this command
  • getconf:tldr:2b466 getconf: Check if your linux system is a 32-bit or 64-bit.
    $ getconf LONG_BIT
    try on your machine
    explain this command
  • getconf:tldr:b55de getconf: Check how many processes the current user can run at once.
    $ getconf CHILD_MAX
    try on your machine
    explain this command
  • getconf:tldr:fa2ee getconf: List every configuration value and then find patterns with the grep command (i.e every value with MAX in it).
    $ getconf -a | grep MAX
    try on your machine
    explain this command
  • getconf:tldr:fc058 getconf: List [a]ll configuration values available.
    $ getconf -a
    try on your machine
    explain this command
back to context overview