[PATCH] samples:pktgen: This file was missing shebang line, so added it

Bhaskar Chowdhury posted 1 patch 2 months, 2 weeks ago
samples/pktgen/parameters.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] samples:pktgen: This file was missing shebang line, so added it
Posted by Bhaskar Chowdhury 2 months, 2 weeks ago
This file was missing the shebang line, so added it.

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
Re: [PATCH] samples:pktgen: This file was missing shebang line, so added it
Posted by Stephen Hemminger 2 months, 2 weeks ago
On Wed, 23 Jul 2025 03:40:18 +0530
Bhaskar Chowdhury <unixbhaskar@gmail.com> wrote:

> This file was missing the shebang line, so added it.
> 
> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>

NAK
This file is not meant to be executed directly. It is sourced from other files.