We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aba2855 + 6cc7193 commit f0a75e9Copy full SHA for f0a75e9
README.md
@@ -157,4 +157,8 @@ __20. ```sort``` command__
157
- ```sort -u <file_name>``` : to remove duplicated.
158
- Example : ```ls | sort``` : used with list command.
159
160
-
+__21. ```chmod``` command__
161
+ - chmod is used to make a file executable and to change the permissions granted to it in Linux
162
+ - ```chmod +x <file_name>``` : make a file executable.
163
+ - ```chmod <permission> <file_name>``` : a set of flags associated with each file determines who can access that file, and how they can access it.
164
+ - Example : ```chmod 755 main.py | chmod +x main.py``` : used to make the file `main.py` executable.
0 commit comments