
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 machineexplain this command
-
getconf:tldr:15cf9 getconf: List the configuration values for a specific directory.$ getconf -a ${path-to-directory}try on your machineexplain this command
-
getconf:tldr:2b466 getconf: Check if your linux system is a 32-bit or 64-bit.$ getconf LONG_BITtry on your machineexplain this command
-
getconf:tldr:b55de getconf: Check how many processes the current user can run at once.$ getconf CHILD_MAXtry on your machineexplain 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 MAXtry on your machineexplain this command
-
getconf:tldr:fc058 getconf: List [a]ll configuration values available.$ getconf -atry on your machineexplain this command