logo

utils-std

Collection of commonly available Unix tools git clone https://anongit.hacktivis.me/git/utils-std.git

renice.1 (1140B)


  1. .\" utils-std: Collection of commonly available Unix tools
  2. .\" Copyright 2017 Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me>
  3. .\" SPDX-License-Identifier: MPL-2.0
  4. .Dd 2024-09-08
  5. .Dt RENICE 1
  6. .Os
  7. .Sh NAME
  8. .Nm renice
  9. .Nd modify scheduling priority of running processes
  10. .Sh SYNOPSIS
  11. .Nm
  12. .Op Fl p
  13. .Fl n Ar adj
  14. .Ar PID...
  15. .Nm
  16. .Fl g
  17. .Fl n Ar adj
  18. .Ar PGID...
  19. .Nm
  20. .Fl u
  21. .Fl n Ar adj
  22. .Ar UID...
  23. .Sh DESCRIPTION
  24. .Nm
  25. modifies the scheduling priority of running processes.
  26. .Sh OPTIONS
  27. .Bl -tag -width Ds
  28. .It Fl g
  29. Adjust all processes of each given process groups IDs
  30. .Pq Ar PGID .
  31. .It Fl n Ar adj
  32. Positive or negative integer used to adjust the scheduling priority
  33. of the process relative to it's current priority.
  34. Negative
  35. .Ar adj
  36. may require appropriate privileges.
  37. .It Fl p
  38. Adjust each given process IDs
  39. .Pq Ar PID .
  40. (default)
  41. .It Fl u
  42. Adjust all processes of each given user IDs
  43. .Pq Ar UID .
  44. .El
  45. .Sh EXIT STATUS
  46. .Ex -std
  47. .Sh SEE ALSO
  48. .Xr nice 1 ,
  49. .Xr setpriority 3
  50. .Sh STANDARDS
  51. .Nm
  52. should be compliant with the
  53. IEEE Std 1003.1-2024 (“POSIX.1”)
  54. specification.
  55. .Sh AUTHORS
  56. .An Haelwenn (lanodan) Monnier Aq Mt contact+utils@hacktivis.me