1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/chattr.md

16 lines
296 B
Markdown
Raw Normal View History

2016-02-16 13:44:30 +05:30
# chattr
> Change attributes of files or folders.
- Make a file or folder immutable to changes and deletion, even by superuser:
`chattr +i {{path}}`
- Make a file or folder mutable:
`chattr -i {{path}}`
- Recursively make an entire folder and contents immutable:
`chattr -R +i {{folder}}`