From d6613663c4a176171ec75c05a49ef0984927345f Mon Sep 17 00:00:00 2001 From: Niki Roo Date: Mon, 19 Mar 2018 17:14:11 +0100 Subject: [PATCH] Fix sh script (missing "#!") --- gopher.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gopher.sh b/gopher.sh index ea93fbe..a728d0b 100755 --- a/gopher.sh +++ b/gopher.sh @@ -39,7 +39,7 @@ if [ ! -d "$tmpd" ]; then exit 2 fi -echo "#/bin/sh +echo "#!/bin/sh # PID: $$ # PID File (this file): $PIDF # You can stop the service by deleting this file then making a last @@ -77,3 +77,4 @@ while [ -e "$PIDF" ]; do ) > "$fifo" done rm -rf "$tmpd" 2>/dev/null + -- 2.27.0