renice.1 (1140B)
- .\" utils-std: Collection of commonly available Unix tools
- .\" Copyright 2017 Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me>
- .\" SPDX-License-Identifier: MPL-2.0
- .Dd 2024-09-08
- .Dt RENICE 1
- .Os
- .Sh NAME
- .Nm renice
- .Nd modify scheduling priority of running processes
- .Sh SYNOPSIS
- .Nm
- .Op Fl p
- .Fl n Ar adj
- .Ar PID...
- .Nm
- .Fl g
- .Fl n Ar adj
- .Ar PGID...
- .Nm
- .Fl u
- .Fl n Ar adj
- .Ar UID...
- .Sh DESCRIPTION
- .Nm
- modifies the scheduling priority of running processes.
- .Sh OPTIONS
- .Bl -tag -width Ds
- .It Fl g
- Adjust all processes of each given process groups IDs
- .Pq Ar PGID .
- .It Fl n Ar adj
- Positive or negative integer used to adjust the scheduling priority
- of the process relative to it's current priority.
- Negative
- .Ar adj
- may require appropriate privileges.
- .It Fl p
- Adjust each given process IDs
- .Pq Ar PID .
- (default)
- .It Fl u
- Adjust all processes of each given user IDs
- .Pq Ar UID .
- .El
- .Sh EXIT STATUS
- .Ex -std
- .Sh SEE ALSO
- .Xr nice 1 ,
- .Xr setpriority 3
- .Sh STANDARDS
- .Nm
- should be compliant with the
- IEEE Std 1003.1-2024 (“POSIX.1”)
- specification.
- .Sh AUTHORS
- .An Haelwenn (lanodan) Monnier Aq Mt contact+utils@hacktivis.me