From 32aaf35c5cb9a0e261d70f5013cf7869e46c4cbd Mon Sep 17 00:00:00 2001 From: Dmitri Sim Date: Sun, 21 Oct 2018 08:48:29 +0300 Subject: [PATCH] Added alternative hint to change file permissions (#19234) --- guide/english/bash/index.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/guide/english/bash/index.md b/guide/english/bash/index.md index ea2be1a9e7..8802355c7b 100644 --- a/guide/english/bash/index.md +++ b/guide/english/bash/index.md @@ -55,10 +55,14 @@ Sometimes the script won't be executed, and the above command will return an err ``` zach@marigold:~$ chmod u+x myBashScript.sh ```` +or +``` +zach@marigold:~$ chmod 744 myBashScript.sh +```` And then execute the script. ### More Information: -* Wikipedia: https://en.wikipedia.org/wiki/Bash_(Unix_shell) -* tldp.org Guide to Bash: http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO.html#toc2 -* gnu.org Bash manual: https://www.gnu.org/software/bash/manual/html_node/index.html#SEC_Contents -* Shell scripting tutorial to get started: https://www.shellscript.sh/ +* [Wikipedia - Bash](https://en.wikipedia.org/wiki/Bash_(Unix_shell)) +* [tldp.org - Guide to Bash](http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO.html#toc2) +* [gnu.org - Bash manual](https://www.gnu.org/software/bash/manual/html_node/index.html#SEC_Contents) +* [Shell scripting tutorial](https://www.shellscript.sh/)