How do I give write permission to file in Linux?

Viewed 76648

How can I (programmatically) give write permission on a file to a particular user in Linux? Like, for example, its owner? Everyone has read access to this file.

5 Answers

You can use chmod 777 <filename>

Related