Basic Linux Commands
Day - 3 #90daysofdevoschallenge
To view what's written in a file.
cat file1.txt
To change the access permissions of files.
chmod 755 file1.txt
The 755 means the owner has full access to read, write, and execute the file, while the group members a...
nikhil16.hashnode.dev2 min read