chore: added installation package

This commit is contained in:
Michele Cereda
2023-07-27 21:11:33 +02:00
parent 7375f7fd68
commit a6782cd365
3 changed files with 12 additions and 0 deletions

View File

@@ -8,6 +8,10 @@
## TL;DR
```sh
# Install the tool.
apt install 'acl'
dnf install 'acl'
# Show acls of files.
getfacl 'test/declarations.h'

View File

@@ -9,6 +9,10 @@
## TL;DR
```sh
# Install the tool.
apt install 'attr'
dnf install 'attr'
# Get values for specific extended attributes.
getfattr -n 'name' 'path/to/file.1''path/to/file.N'
```

View File

@@ -9,6 +9,10 @@
## TL;DR
```sh
# Install the tool.
apt install 'attr'
dnf install 'attr'
# Add extended attributes.
setfattr -n 'name' -v 'value' 'path/to/file.1''path/to/file.N'