screen-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[screen-devel] [PATCH] fix command line interpreters


From: René Genz
Subject: [screen-devel] [PATCH] fix command line interpreters
Date: Sun, 9 Aug 2020 22:31:47 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Icedove/68.9.0

I guess broken shebangs are not desired.
---
 mktar.pl            | 2 +-
 src/comm.sh         | 2 +-
 src/etc/newsyntax38 | 2 +-
 src/install.sh      | 2 +-
 src/term.sh         | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/mktar.pl b/mktar.pl
index 79b1731..9ffa7a0 100755
--- a/mktar.pl
+++ b/mktar.pl
@@ -1,4 +1,4 @@
-#! /usr/bin/perl -w
+#!/usr/bin/perl -w
 # 
 # create a tar ball snapshot from cvs repository.
 #
diff --git a/src/comm.sh b/src/comm.sh
index 5bae17f..bc237e5 100644
--- a/src/comm.sh
+++ b/src/comm.sh
@@ -1,4 +1,4 @@
-#! /bin/sh
+#!/bin/sh
 
 if test -z "$AWK"; then
   AWK=awk
diff --git a/src/etc/newsyntax38 b/src/etc/newsyntax38
index b22850d..1e05a10 100755
--- a/src/etc/newsyntax38
+++ b/src/etc/newsyntax38
@@ -1,4 +1,4 @@
-#! /bin/sh
+#!/bin/sh
 #
 # newsyntax38 -- update a screenrc file from 3.3 to 3.8 syntax
 #
diff --git a/src/install.sh b/src/install.sh
index 8c07c50..0ff4b6a 100755
--- a/src/install.sh
+++ b/src/install.sh
@@ -1,4 +1,4 @@
-#! /bin/sh
+#!/bin/sh
 
 #
 # install - install a program, script, or datafile
diff --git a/src/term.sh b/src/term.sh
index cae53ce..0611e78 100644
--- a/src/term.sh
+++ b/src/term.sh
@@ -1,4 +1,4 @@
-#! /bin/sh
+#!/bin/sh
 
 if test -z "$AWK"; then
   AWK=awk
-- 
2.28.0



reply via email to

[Prev in Thread] Current Thread [Next in Thread]