Forgot a few code blocks in Chapter 5

This commit is contained in:
ganome 2024-09-05 17:18:45 -06:00
parent 8cebf78356
commit 61db30e0cb
Signed by untrusted user who does not match committer: Ganome
GPG Key ID: 944DE53336D81B83

View File

@ -78,9 +78,7 @@ Examples:
### Using chmod with Numeric Notation
You can also use numeric notation with chmod:
```
chmod [numeric_permissions] filename
```
`chmod [numeric_permissions] filename`
Example:
- `chmod 755 file.txt`: Set rwx for owner, rx for group and others
@ -90,16 +88,12 @@ Example:
### chown command
Use `chown` to change the owner of a file:
```
chown new_owner filename
```
`chown new_owner filename`
### chgrp command
Use `chgrp` to change the group of a file:
```
chgrp new_group filename
```
`chgrp new_group filename`
## 7. Special Permissions