From 13ea3c627c6422a982e2e61b827aa969dabfc4fa Mon Sep 17 00:00:00 2001 From: Kamalesh Palanisamy Date: Tue, 16 Oct 2018 10:31:16 +0530 Subject: [PATCH] Created the guide for the chmod command (#19408) * Created a guide about the mkdir command * Update index.md * Added a guide for the rm command in bash * Created a new guide for the chmod command --- .../src/pages/guide/english/bash/bash-chmod/index.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 client/src/pages/guide/english/bash/bash-chmod/index.md diff --git a/client/src/pages/guide/english/bash/bash-chmod/index.md b/client/src/pages/guide/english/bash/bash-chmod/index.md new file mode 100644 index 0000000000..b66251d58e --- /dev/null +++ b/client/src/pages/guide/english/bash/bash-chmod/index.md @@ -0,0 +1,11 @@ +--- +title: Bash chmod +--- + +## Bash command: chmod + +**Change the permissions of a File/Directory** ,for example `chmod u+x hello.py`.(Gives the user the permission to execute the file) + + +### More Information: +* [Wikipedia](https://en.wikipedia.org/wiki/Chmod)