DEV Community

chanduthedev
chanduthedev

Posted on

Best way to avoid accidental modification of the file

Recently I learned very useful tip to avoid accidentally modifying/editing a original file. This will work in all unix like systems including Mac.

The Idea is to just change file permissions to read only using chmod command as below


>chmod 444 file_name

Enter fullscreen mode Exit fullscreen mode

or


>chmod 400 file_name

Enter fullscreen mode Exit fullscreen mode

Top comments (0)