nproc es un comando Unix simple que se utiliza para imprimir el número de unidades de procesamiento disponibles en el sistema o en el proceso actual. Este comando podría usarse en diagnósticos del sistema y propósitos relacionados. Es parte de las utilidades GNU Core, por lo que viene preinstalado con todos los sistemas operativos Linux modernos.
Sintaxis:
nproc [OPTION]...
Trabajar con el comando nproc
1. Utilice el comando nproc
nproc
It prints the number of processing units available to the current process. It may be less than the number of online processors.
2. Para imprimir el total de unidades de procesamiento instaladas
nproc --all
We use the “–all” option when we want nproc to display the total installed processing units.
3. Para excluir algunas unidades de procesamiento
nproc --ignore=4
We use “–ignore” option when we want nproc to exclude a set number of processing units.
4. Para mostrar la sección de ayuda
nproc --help
This command will display the help section of the nproc command which will have all the information related to the nproc command.
5. Para mostrar la versión
nproc --version
This command will display the version of nproc command in Linux.
6. Para mostrar el manual de nproc
man nproc
This command will print the manual of the nproc command.