
chattr
List of commands for chattr:
-
chattr:tldr:07868 chattr: Make a file or directory immutable to changes and deletion, even by superuser.$ chattr +i ${filename_or_directory}try on your machineexplain this command
-
chattr:tldr:6cdf6 chattr: Recursively make an entire directory and contents immutable.$ chattr -R +i ${path-to-directory}try on your machineexplain this command
-
chattr:tldr:7e834 chattr: Make a file or directory mutable.$ chattr -i ${filename_or_directory}try on your machineexplain this command