mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 21:17:45 +00:00
Base: Add more manpages for command-line utilities
This commit is contained in:
parent
5d8585df97
commit
57340dda36
25 changed files with 749 additions and 0 deletions
29
Base/usr/share/man/man1/chgrp.md
Normal file
29
Base/usr/share/man/man1/chgrp.md
Normal file
|
@ -0,0 +1,29 @@
|
|||
## Name
|
||||
|
||||
chgrp - change group ownership of file
|
||||
|
||||
## Synopsis
|
||||
|
||||
```**sh
|
||||
$ chgrp <gid> <path>
|
||||
$ chgrp <name> <path>
|
||||
```
|
||||
|
||||
## Description
|
||||
|
||||
`chgrp` called as root or as file owner changes owning group of specified `path` to `gid` or `name`.
|
||||
|
||||
## Examples
|
||||
|
||||
```sh
|
||||
# Change group of README.md to 111
|
||||
# chgrp 111 README.md
|
||||
|
||||
# Change group of README.md to root
|
||||
# chgrp root README.md
|
||||
```
|
||||
|
||||
## See also
|
||||
|
||||
* [`chmod`(1)](chmod.md)
|
||||
* [`chown`(1)](chown.md)
|
Loading…
Add table
Add a link
Reference in a new issue