From 54f6ce428c2779bc67a83123679c4d147ea05bdc Mon Sep 17 00:00:00 2001 From: ivuorinen Date: Fri, 6 Jun 2025 00:20:09 +0000 Subject: [PATCH] Update cheatsheets --- tldr/linux/chattr | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tldr/linux/chattr b/tldr/linux/chattr index 6c2c252d..919412ad 100644 --- a/tldr/linux/chattr +++ b/tldr/linux/chattr @@ -19,3 +19,11 @@ source: https://github.com/tldr-pages/tldr.git - Recursively make an entire directory and contents immutable: `chattr -R +i {{path/to/directory}}` + +- Mark a directory and its files to be interpreted in a case-insensitive manner: + +`chattr +F {{path/to/directory}}` + +- Set a file to only allow appending: + +`chattr +a {{path/to/file}}`