From f40384972bf92bc2c4f2e5b0a626ec5efb1df64c Mon Sep 17 00:00:00 2001 From: Benabadji Mohammed Salim Date: Fri, 2 Nov 2018 16:34:54 +0100 Subject: [PATCH] fix example usage (#20213) * fix example usage * Removed translations --- guide/english/bash/bash-chmod/index.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/guide/english/bash/bash-chmod/index.md b/guide/english/bash/bash-chmod/index.md index 9b460dcd58..07fa817799 100644 --- a/guide/english/bash/bash-chmod/index.md +++ b/guide/english/bash/bash-chmod/index.md @@ -6,6 +6,18 @@ title: Bash chmod **Change the permissions of a File/Directory**, for example `chmod u+x hello.py`. (Gives the user the permission to execute the file) +### Usage + +**Change the permissions of a File/Directory** + +```bash +chmod [permission] [file_names] +``` +permission can be r+w or r+w+x ...etc + +* r = read +* w = write +* x = execute ### More Information: * [Wikipedia](https://en.wikipedia.org/wiki/Chmod)