* [PATCH 01/11] Shebang line was missing,fixed
2025-07-22 11:16 [PATCH 00/11] Various trees,shell files missing the shebang line Bhaskar Chowdhury
@ 2025-07-22 11:16 ` Bhaskar Chowdhury
2025-07-22 11:16 ` [PATCH 02/11] " Bhaskar Chowdhury
` (11 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: Bhaskar Chowdhury @ 2025-07-22 11:16 UTC (permalink / raw)
To: rdunlap, linux-kernel; +Cc: Bhaskar Chowdhury
Added the shebang lines at the top of the file.
Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
Documentation/admin-guide/aoe/udev-install.sh | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/Documentation/admin-guide/aoe/udev-install.sh b/Documentation/admin-guide/aoe/udev-install.sh
index 15e86f58c036..1a34692cda23 100644
--- a/Documentation/admin-guide/aoe/udev-install.sh
+++ b/Documentation/admin-guide/aoe/udev-install.sh
@@ -1,6 +1,8 @@
-# install the aoe-specific udev rules from udev.txt into
+#!/bin/sh
+
+# install the aoe-specific udev rules from udev.txt into
# the system's udev configuration
-#
+#
me="`basename $0`"
--
2.49.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 02/11] Shebang line was missing,fixed
2025-07-22 11:16 [PATCH 00/11] Various trees,shell files missing the shebang line Bhaskar Chowdhury
2025-07-22 11:16 ` [PATCH 01/11] Shebang line was missing,fixed Bhaskar Chowdhury
@ 2025-07-22 11:16 ` Bhaskar Chowdhury
2025-07-22 11:16 ` [PATCH 03/11] " Bhaskar Chowdhury
` (10 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: Bhaskar Chowdhury @ 2025-07-22 11:16 UTC (permalink / raw)
To: rdunlap, linux-kernel; +Cc: Bhaskar Chowdhury
Added the shebang line at the top of file.
Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
Documentation/features/list-arch.sh | 2 ++
1 file changed, 2 insertions(+)
diff --git a/Documentation/features/list-arch.sh b/Documentation/features/list-arch.sh
index ac8ff7f6f859..e7124a4c3e8f 100755
--- a/Documentation/features/list-arch.sh
+++ b/Documentation/features/list-arch.sh
@@ -1,3 +1,5 @@
+#!/bin/sh
+
# SPDX-License-Identifier: GPL-2.0
#
# Small script that visualizes the kernel feature support status
--
2.49.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 03/11] Shebang line was missing,fixed
2025-07-22 11:16 [PATCH 00/11] Various trees,shell files missing the shebang line Bhaskar Chowdhury
2025-07-22 11:16 ` [PATCH 01/11] Shebang line was missing,fixed Bhaskar Chowdhury
2025-07-22 11:16 ` [PATCH 02/11] " Bhaskar Chowdhury
@ 2025-07-22 11:16 ` Bhaskar Chowdhury
2025-07-22 11:17 ` [PATCH 04/11] " Bhaskar Chowdhury
` (9 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: Bhaskar Chowdhury @ 2025-07-22 11:16 UTC (permalink / raw)
To: rdunlap, linux-kernel; +Cc: Bhaskar Chowdhury
Added the shebang line at the top of file.
Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
Documentation/features/scripts/features-refresh.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/features/scripts/features-refresh.sh b/Documentation/features/scripts/features-refresh.sh
index c2288124e94a..a908704fd149 100755
--- a/Documentation/features/scripts/features-refresh.sh
+++ b/Documentation/features/scripts/features-refresh.sh
@@ -1,4 +1,4 @@
-#
+#!/bin/sh
# Small script that refreshes the kernel feature support status in place.
#
--
2.49.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 04/11] Shebang line was missing,fixed
2025-07-22 11:16 [PATCH 00/11] Various trees,shell files missing the shebang line Bhaskar Chowdhury
` (2 preceding siblings ...)
2025-07-22 11:16 ` [PATCH 03/11] " Bhaskar Chowdhury
@ 2025-07-22 11:17 ` Bhaskar Chowdhury
2025-07-22 11:17 ` [PATCH 05/11] There was a space between bang and shell path,fixed Bhaskar Chowdhury
` (8 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: Bhaskar Chowdhury @ 2025-07-22 11:17 UTC (permalink / raw)
To: rdunlap, linux-kernel; +Cc: Bhaskar Chowdhury
Added the shebang line at the top of file.
Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
arch/powerpc/tools/head_check.sh | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/powerpc/tools/head_check.sh b/arch/powerpc/tools/head_check.sh
index 689907cda996..a9cd06958921 100644
--- a/arch/powerpc/tools/head_check.sh
+++ b/arch/powerpc/tools/head_check.sh
@@ -1,3 +1,4 @@
+#!/bin/sh
# Copyright © 2016 IBM Corporation
# This program is free software; you can redistribute it and/or
--
2.49.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 05/11] There was a space between bang and shell path,fixed
2025-07-22 11:16 [PATCH 00/11] Various trees,shell files missing the shebang line Bhaskar Chowdhury
` (3 preceding siblings ...)
2025-07-22 11:17 ` [PATCH 04/11] " Bhaskar Chowdhury
@ 2025-07-22 11:17 ` Bhaskar Chowdhury
2025-07-22 11:17 ` [PATCH 06/11] Shebang line was missing,fixed Bhaskar Chowdhury
` (7 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: Bhaskar Chowdhury @ 2025-07-22 11:17 UTC (permalink / raw)
To: rdunlap, linux-kernel; +Cc: Bhaskar Chowdhury
Added the shebang line at the top of file.
Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
Documentation/admin-guide/aoe/status.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/admin-guide/aoe/status.sh b/Documentation/admin-guide/aoe/status.sh
index eeec7baae57a..83bb8eb229e7 100644
--- a/Documentation/admin-guide/aoe/status.sh
+++ b/Documentation/admin-guide/aoe/status.sh
@@ -1,4 +1,4 @@
-#! /bin/sh
+#!/bin/sh
# collate and present sysfs information about AoE storage
#
# A more complete version of this script is aoe-stat, in the
--
2.49.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 06/11] Shebang line was missing,fixed
2025-07-22 11:16 [PATCH 00/11] Various trees,shell files missing the shebang line Bhaskar Chowdhury
` (4 preceding siblings ...)
2025-07-22 11:17 ` [PATCH 05/11] There was a space between bang and shell path,fixed Bhaskar Chowdhury
@ 2025-07-22 11:17 ` Bhaskar Chowdhury
2025-07-22 11:17 ` [PATCH 07/11] " Bhaskar Chowdhury
` (6 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: Bhaskar Chowdhury @ 2025-07-22 11:17 UTC (permalink / raw)
To: rdunlap, linux-kernel; +Cc: Bhaskar Chowdhury
Added the shebang line at the top of file.
Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
samples/pktgen/functions.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/samples/pktgen/functions.sh b/samples/pktgen/functions.sh
index c08cefb8eb1f..2578e97e46ff 100644
--- a/samples/pktgen/functions.sh
+++ b/samples/pktgen/functions.sh
@@ -1,4 +1,4 @@
-#
+#!/bin/sh
# Common functions used by pktgen scripts
# - Depending on bash 3 (or higher) syntax
#
--
2.49.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 07/11] Shebang line was missing,fixed
2025-07-22 11:16 [PATCH 00/11] Various trees,shell files missing the shebang line Bhaskar Chowdhury
` (5 preceding siblings ...)
2025-07-22 11:17 ` [PATCH 06/11] Shebang line was missing,fixed Bhaskar Chowdhury
@ 2025-07-22 11:17 ` Bhaskar Chowdhury
2025-07-22 11:17 ` [PATCH 08/11] " Bhaskar Chowdhury
` (5 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: Bhaskar Chowdhury @ 2025-07-22 11:17 UTC (permalink / raw)
To: rdunlap, linux-kernel; +Cc: Bhaskar Chowdhury
Added the shebang line at the top of file.
Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
samples/pktgen/parameters.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/samples/pktgen/parameters.sh b/samples/pktgen/parameters.sh
index 81906f199454..419001ddf387 100644
--- a/samples/pktgen/parameters.sh
+++ b/samples/pktgen/parameters.sh
@@ -1,4 +1,4 @@
-#
+#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
# Common parameter parsing for pktgen scripts
#
--
2.49.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 08/11] Shebang line was missing,fixed
2025-07-22 11:16 [PATCH 00/11] Various trees,shell files missing the shebang line Bhaskar Chowdhury
` (6 preceding siblings ...)
2025-07-22 11:17 ` [PATCH 07/11] " Bhaskar Chowdhury
@ 2025-07-22 11:17 ` Bhaskar Chowdhury
2025-07-22 11:17 ` [PATCH 09/11] " Bhaskar Chowdhury
` (4 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: Bhaskar Chowdhury @ 2025-07-22 11:17 UTC (permalink / raw)
To: rdunlap, linux-kernel; +Cc: Bhaskar Chowdhury
Added the shebang line at the top of file.
Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
tools/bootconfig/scripts/ftrace.sh | 1 +
1 file changed, 1 insertion(+)
diff --git a/tools/bootconfig/scripts/ftrace.sh b/tools/bootconfig/scripts/ftrace.sh
index 186eed923041..cc5250c64699 100644
--- a/tools/bootconfig/scripts/ftrace.sh
+++ b/tools/bootconfig/scripts/ftrace.sh
@@ -1,3 +1,4 @@
+#!/bin/sh
# SPDX-License-Identifier: GPL-2.0-only
clear_trace() { # reset trace output
--
2.49.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 09/11] Shebang line was missing,fixed
2025-07-22 11:16 [PATCH 00/11] Various trees,shell files missing the shebang line Bhaskar Chowdhury
` (7 preceding siblings ...)
2025-07-22 11:17 ` [PATCH 08/11] " Bhaskar Chowdhury
@ 2025-07-22 11:17 ` Bhaskar Chowdhury
2025-07-22 11:17 ` [PATCH 10/11] " Bhaskar Chowdhury
` (3 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: Bhaskar Chowdhury @ 2025-07-22 11:17 UTC (permalink / raw)
To: rdunlap, linux-kernel; +Cc: Bhaskar Chowdhury
Added the shebang line at the top of file.
Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
tools/perf/tests/shell/common/init.sh | 1 +
1 file changed, 1 insertion(+)
diff --git a/tools/perf/tests/shell/common/init.sh b/tools/perf/tests/shell/common/init.sh
index 26c7525651e0..9e9d4247ada3 100644
--- a/tools/perf/tests/shell/common/init.sh
+++ b/tools/perf/tests/shell/common/init.sh
@@ -1,3 +1,4 @@
+#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
#
# init.sh
--
2.49.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 10/11] Shebang line was missing,fixed
2025-07-22 11:16 [PATCH 00/11] Various trees,shell files missing the shebang line Bhaskar Chowdhury
` (8 preceding siblings ...)
2025-07-22 11:17 ` [PATCH 09/11] " Bhaskar Chowdhury
@ 2025-07-22 11:17 ` Bhaskar Chowdhury
2025-07-22 11:17 ` [PATCH 11/11] " Bhaskar Chowdhury
` (2 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: Bhaskar Chowdhury @ 2025-07-22 11:17 UTC (permalink / raw)
To: rdunlap, linux-kernel; +Cc: Bhaskar Chowdhury
Added the shebang line at the top of file.
Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
tools/perf/tests/shell/common/patterns.sh | 1 +
1 file changed, 1 insertion(+)
diff --git a/tools/perf/tests/shell/common/patterns.sh b/tools/perf/tests/shell/common/patterns.sh
index 21dab25c7b7f..807c1bc7bb52 100644
--- a/tools/perf/tests/shell/common/patterns.sh
+++ b/tools/perf/tests/shell/common/patterns.sh
@@ -1,3 +1,4 @@
+#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
export RE_NUMBER="[0-9\.]+"
--
2.49.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 11/11] Shebang line was missing,fixed
2025-07-22 11:16 [PATCH 00/11] Various trees,shell files missing the shebang line Bhaskar Chowdhury
` (9 preceding siblings ...)
2025-07-22 11:17 ` [PATCH 10/11] " Bhaskar Chowdhury
@ 2025-07-22 11:17 ` Bhaskar Chowdhury
2025-07-22 12:09 ` [PATCH 00/11] Various trees,shell files missing the shebang line Theodore Ts'o
2025-07-22 17:10 ` Jonathan Corbet
12 siblings, 0 replies; 14+ messages in thread
From: Bhaskar Chowdhury @ 2025-07-22 11:17 UTC (permalink / raw)
To: rdunlap, linux-kernel; +Cc: Bhaskar Chowdhury
Added the shebang line at the top of file.
Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
.../selftests/drivers/net/mlxsw/spectrum-2/mirror_gre_scale.sh | 1 +
1 file changed, 1 insertion(+)
diff --git a/tools/testing/selftests/drivers/net/mlxsw/spectrum-2/mirror_gre_scale.sh b/tools/testing/selftests/drivers/net/mlxsw/spectrum-2/mirror_gre_scale.sh
index f7c168decd1e..abe3835ded4d 100644
--- a/tools/testing/selftests/drivers/net/mlxsw/spectrum-2/mirror_gre_scale.sh
+++ b/tools/testing/selftests/drivers/net/mlxsw/spectrum-2/mirror_gre_scale.sh
@@ -1,3 +1,4 @@
+#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
source ../mirror_gre_scale.sh
--
2.49.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH 00/11] Various trees,shell files missing the shebang line
2025-07-22 11:16 [PATCH 00/11] Various trees,shell files missing the shebang line Bhaskar Chowdhury
` (10 preceding siblings ...)
2025-07-22 11:17 ` [PATCH 11/11] " Bhaskar Chowdhury
@ 2025-07-22 12:09 ` Theodore Ts'o
2025-07-22 17:10 ` Jonathan Corbet
12 siblings, 0 replies; 14+ messages in thread
From: Theodore Ts'o @ 2025-07-22 12:09 UTC (permalink / raw)
To: Bhaskar Chowdhury; +Cc: rdunlap, linux-kernel
On Tue, Jul 22, 2025 at 04:46:56PM +0530, Bhaskar Chowdhury wrote:
> This is a human being with flesh and blood.
>
> Shell script files were missing the "shebang" line aka shell interpreter.
>
> Note to Randy,
>
> This is for your spare time Eagle Eye stuff, if you could...please.
>
> Oh, I might have inadvertantly added some harmless blank lines too.
>
> Bhaskar Chowdhury (11):
> Shebang line was missing,fixed
There's also a missing space before ",fixed" in all of the commit
descriptions. Perhaps you could fix this when you send a v2?
- Ted
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 00/11] Various trees,shell files missing the shebang line
2025-07-22 11:16 [PATCH 00/11] Various trees,shell files missing the shebang line Bhaskar Chowdhury
` (11 preceding siblings ...)
2025-07-22 12:09 ` [PATCH 00/11] Various trees,shell files missing the shebang line Theodore Ts'o
@ 2025-07-22 17:10 ` Jonathan Corbet
12 siblings, 0 replies; 14+ messages in thread
From: Jonathan Corbet @ 2025-07-22 17:10 UTC (permalink / raw)
To: Bhaskar Chowdhury, rdunlap, linux-kernel; +Cc: Bhaskar Chowdhury
Bhaskar Chowdhury <unixbhaskar@gmail.com> writes:
> This is a human being with flesh and blood.
>
> Shell script files were missing the "shebang" line aka shell interpreter.
>
> Note to Randy,
>
> This is for your spare time Eagle Eye stuff, if you could...please.
>
> Oh, I might have inadvertantly added some harmless blank lines too.
>
> Bhaskar Chowdhury (11):
> Shebang line was missing,fixed
> Shebang line was missing,fixed
> Shebang line was missing,fixed
> Shebang line was missing,fixed
> There was a space between bang and shell path,fixed
> Shebang line was missing,fixed
> Shebang line was missing,fixed
> Shebang line was missing,fixed
> Shebang line was missing,fixed
> Shebang line was missing,fixed
> Shebang line was missing,fixed
A bunch of patches with the same subject line and changelog isn't going
to help anybody looking at these changes later on. Please, for each
one, come up with a proper, subsystem-specific subject line and describe
the actual work (which file you changed) in the changelog.
Thanks,
jon
^ permalink raw reply [flat|nested] 14+ messages in thread