diff --git a/Base/home/anon/.shellrc b/Base/home/anon/.shellrc index 9c33c7f968f..f5763f21f7c 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 50b1fb86ef1..4edea6bfeba 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 42f33c31ccf..011ebfd714f 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 b4cdad84f98..0205882e275 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 ba62fec9b3f..af1aee3a2d2 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 6ab49b224e9..8daf1dc6e73 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 482e9cb126d..38858c66d37 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 0669f2fdda1..cffddfba532 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 6060ff3fa64..e1a6ce4873a 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 08ad044f2ac..1eddc2717b0 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 10118d2ef09..a8d40f4c9a8 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 128c4955620..daa28dc207d 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 1f8e686378b..0b7c3eaa402 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 342141a7e38..ac1faac4571 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 f5a5602dbec..3c63a5180fd 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 9f8ba36f665..bb935f1603d 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 875ea48acc7..de169cd07f1 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 23525d28d25..a1a91158515 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 b3db2512a8c..7443ba08b0c 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 f08d7f2caf1..bb0d3b861d2 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