summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAli Mohammad Pur <ali.mpfard@gmail.com>2023-02-12 17:50:28 +0330
committerAli Mohammad Pur <Ali.mpfard@gmail.com>2023-02-13 23:00:15 +0330
commiteb20fbe145d2100df790e4ef0e2ed4402b97bfea (patch)
treef94d5acd3a21c2cfbcdfc4371867a9f962623fab
parentbeaae6b420cbe85a2d382f8f75447fb49514c20f (diff)
downloadserenity-eb20fbe145d2100df790e4ef0e2ed4402b97bfea.zip
Everywhere: Use /bin/Shell as the shebang for Shell scripts
-rw-r--r--Base/home/anon/.shellrc2
-rwxr-xr-xBase/home/anon/Tests/run-tests-and-shutdown.sh2
-rw-r--r--Base/res/devel/templates/cpp-basic.postcreate2
-rw-r--r--Base/res/devel/templates/cpp-gui.postcreate2
-rw-r--r--Base/res/devel/templates/cpp-library.postcreate2
-rw-r--r--Base/res/devel/templates/serenity-application.postcreate2
-rw-r--r--Userland/Shell/Tests/brace-exp.sh2
-rw-r--r--Userland/Shell/Tests/builtin-redir.sh2
-rw-r--r--Userland/Shell/Tests/builtin-test.sh2
-rw-r--r--Userland/Shell/Tests/control-structure-as-command.sh2
-rw-r--r--Userland/Shell/Tests/function.sh2
-rw-r--r--Userland/Shell/Tests/heredocs.sh2
-rw-r--r--Userland/Shell/Tests/if.sh2
-rw-r--r--Userland/Shell/Tests/immediate.sh2
-rw-r--r--Userland/Shell/Tests/loop.sh2
-rw-r--r--Userland/Shell/Tests/sigpipe.sh2
-rw-r--r--Userland/Shell/Tests/slice.sh2
-rw-r--r--Userland/Shell/Tests/special-vars.sh2
-rw-r--r--Userland/Shell/Tests/subshell.sh2
-rw-r--r--Userland/Shell/Tests/valid.sh2
20 files changed, 20 insertions, 20 deletions
diff --git a/Base/home/anon/.shellrc b/Base/home/anon/.shellrc
index 9c33c7f968..f5763f21f7 100644
--- a/Base/home/anon/.shellrc
+++ b/Base/home/anon/.shellrc
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/Shell
# IFS controls what $(...) (inline evaluate) would split its captured
# string with. the default is \x0a (i.e. newline).
diff --git a/Base/home/anon/Tests/run-tests-and-shutdown.sh b/Base/home/anon/Tests/run-tests-and-shutdown.sh
index 50b1fb86ef..4edea6bfeb 100755
--- a/Base/home/anon/Tests/run-tests-and-shutdown.sh
+++ b/Base/home/anon/Tests/run-tests-and-shutdown.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/Shell
echo
echo "==== Running Tests on SerenityOS ===="
diff --git a/Base/res/devel/templates/cpp-basic.postcreate b/Base/res/devel/templates/cpp-basic.postcreate
index 42f33c31cc..011ebfd714 100644
--- a/Base/res/devel/templates/cpp-basic.postcreate
+++ b/Base/res/devel/templates/cpp-basic.postcreate
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/Shell
echo > $2/Makefile <<-EOF
PROGRAM = $1
diff --git a/Base/res/devel/templates/cpp-gui.postcreate b/Base/res/devel/templates/cpp-gui.postcreate
index b4cdad84f9..0205882e27 100644
--- a/Base/res/devel/templates/cpp-gui.postcreate
+++ b/Base/res/devel/templates/cpp-gui.postcreate
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/Shell
echo > $2/Makefile <<-EOF
PROGRAM = $1
diff --git a/Base/res/devel/templates/cpp-library.postcreate b/Base/res/devel/templates/cpp-library.postcreate
index ba62fec9b3..af1aee3a2d 100644
--- a/Base/res/devel/templates/cpp-library.postcreate
+++ b/Base/res/devel/templates/cpp-library.postcreate
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/Shell
# $1: Project name, filesystem safe
# $2: Project full path
diff --git a/Base/res/devel/templates/serenity-application.postcreate b/Base/res/devel/templates/serenity-application.postcreate
index 6ab49b224e..8daf1dc6e7 100644
--- a/Base/res/devel/templates/serenity-application.postcreate
+++ b/Base/res/devel/templates/serenity-application.postcreate
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/Shell
echo > $2/CMakeLists.txt <<-EOF
# NOTE! Make sure to edit this file and remove the comments before submitting a
diff --git a/Userland/Shell/Tests/brace-exp.sh b/Userland/Shell/Tests/brace-exp.sh
index 482e9cb126..38858c66d3 100644
--- a/Userland/Shell/Tests/brace-exp.sh
+++ b/Userland/Shell/Tests/brace-exp.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/Shell
source $(dirname "$0")/test-commons.inc
diff --git a/Userland/Shell/Tests/builtin-redir.sh b/Userland/Shell/Tests/builtin-redir.sh
index 0669f2fdda..cffddfba53 100644
--- a/Userland/Shell/Tests/builtin-redir.sh
+++ b/Userland/Shell/Tests/builtin-redir.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/Shell
source $(dirname "$0")/test-commons.inc
diff --git a/Userland/Shell/Tests/builtin-test.sh b/Userland/Shell/Tests/builtin-test.sh
index 6060ff3fa6..e1a6ce4873 100644
--- a/Userland/Shell/Tests/builtin-test.sh
+++ b/Userland/Shell/Tests/builtin-test.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/Shell
source $(dirname "$0")/test-commons.inc
diff --git a/Userland/Shell/Tests/control-structure-as-command.sh b/Userland/Shell/Tests/control-structure-as-command.sh
index 08ad044f2a..1eddc2717b 100644
--- a/Userland/Shell/Tests/control-structure-as-command.sh
+++ b/Userland/Shell/Tests/control-structure-as-command.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/Shell
source $(dirname "$0")/test-commons.inc
diff --git a/Userland/Shell/Tests/function.sh b/Userland/Shell/Tests/function.sh
index 10118d2ef0..a8d40f4c9a 100644
--- a/Userland/Shell/Tests/function.sh
+++ b/Userland/Shell/Tests/function.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/Shell
source $(dirname "$0")/test-commons.inc
diff --git a/Userland/Shell/Tests/heredocs.sh b/Userland/Shell/Tests/heredocs.sh
index 128c495562..daa28dc207 100644
--- a/Userland/Shell/Tests/heredocs.sh
+++ b/Userland/Shell/Tests/heredocs.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/Shell
source $(dirname "$0")/test-commons.inc
# go to a writable directory
diff --git a/Userland/Shell/Tests/if.sh b/Userland/Shell/Tests/if.sh
index 1f8e686378..0b7c3eaa40 100644
--- a/Userland/Shell/Tests/if.sh
+++ b/Userland/Shell/Tests/if.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/shell
source $(dirname "$0")/test-commons.inc
diff --git a/Userland/Shell/Tests/immediate.sh b/Userland/Shell/Tests/immediate.sh
index 342141a7e3..ac1faac457 100644
--- a/Userland/Shell/Tests/immediate.sh
+++ b/Userland/Shell/Tests/immediate.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/Shell
source $(dirname "$0")/test-commons.inc
diff --git a/Userland/Shell/Tests/loop.sh b/Userland/Shell/Tests/loop.sh
index f5a5602dbe..3c63a5180f 100644
--- a/Userland/Shell/Tests/loop.sh
+++ b/Userland/Shell/Tests/loop.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/Shell
source $(dirname "$0")/test-commons.inc
# go to a writable directory
diff --git a/Userland/Shell/Tests/sigpipe.sh b/Userland/Shell/Tests/sigpipe.sh
index 9f8ba36f66..bb935f1603 100644
--- a/Userland/Shell/Tests/sigpipe.sh
+++ b/Userland/Shell/Tests/sigpipe.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/Shell
source $(dirname "$0")/test-commons.inc
diff --git a/Userland/Shell/Tests/slice.sh b/Userland/Shell/Tests/slice.sh
index 875ea48acc..de169cd07f 100644
--- a/Userland/Shell/Tests/slice.sh
+++ b/Userland/Shell/Tests/slice.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/Shell
source $(dirname "$0")/test-commons.inc
diff --git a/Userland/Shell/Tests/special-vars.sh b/Userland/Shell/Tests/special-vars.sh
index 23525d28d2..a1a9115851 100644
--- a/Userland/Shell/Tests/special-vars.sh
+++ b/Userland/Shell/Tests/special-vars.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/Shell
source $(dirname "$0")/test-commons.inc
diff --git a/Userland/Shell/Tests/subshell.sh b/Userland/Shell/Tests/subshell.sh
index b3db2512a8..7443ba08b0 100644
--- a/Userland/Shell/Tests/subshell.sh
+++ b/Userland/Shell/Tests/subshell.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/Shell
source $(dirname "$0")/test-commons.inc
diff --git a/Userland/Shell/Tests/valid.sh b/Userland/Shell/Tests/valid.sh
index f08d7f2caf..bb0d3b861d 100644
--- a/Userland/Shell/Tests/valid.sh
+++ b/Userland/Shell/Tests/valid.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/Shell
echo "Not running Shell-valid as it has a high failure rate on target #7336"
echo PASS