From c1da78b816ae854e67b7c1345af3f25615660d36 Mon Sep 17 00:00:00 2001 From: j mahesh kumar Date: Fri, 5 Apr 2019 02:49:51 +0530 Subject: [PATCH] script file extension is not necessary (#30383) --- guide/english/linux/shell-scripting/index.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/guide/english/linux/shell-scripting/index.md b/guide/english/linux/shell-scripting/index.md index 85fc85e2ade..56a8ce33820 100644 --- a/guide/english/linux/shell-scripting/index.md +++ b/guide/english/linux/shell-scripting/index.md @@ -34,3 +34,11 @@ Hello World! ``` More info about shell-scripting can be found [here](https://www.shellscript.sh/) + + +//changes +script file extension is not necessary +In linux, script can be executed even without .sh extension. +for example test.sh can be executed if we leave it as test. +If we keep our script in user/bin then we can use script anywhere. +