Update cheatsheets

This commit is contained in:
ivuorinen
2025-04-20 00:20:58 +00:00
parent 846fc1563d
commit a360d4dc45
153 changed files with 493 additions and 434 deletions

View File

@@ -10,12 +10,12 @@ source: https://github.com/tldr-pages/tldr.git
- Set name of attribute for file:
`setfattr -n user.{{attribute_name}} {{path/to/file}}`
`setfattr {{[-n|--name]}} user.{{attribute_name}} {{path/to/file}}`
- Set a user-defined value of an extended attribute on a file:
`setfattr -n user.{{attribute_name}} -v "{{value}}" {{path/to/file}}`
`setfattr {{[-n|--name]}} user.{{attribute_name}} {{[-v|--value]}} "{{value}}" {{path/to/file}}`
- Remove a specific attribute of a file:
`setfattr -x user.{{attribute_name}} {{path/to/file}}`
`setfattr {{[-x|--remove]}} user.{{attribute_name}} {{path/to/file}}`