From a94738f7ef242fdc7ec299dbc38d78667ea05042 Mon Sep 17 00:00:00 2001 From: Wtm Date: Thu, 18 Feb 2016 12:12:50 +0800 Subject: [PATCH] Remove "\n" in stop.sh. --- stop.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stop.sh b/stop.sh index 37c49f3..121279f 100755 --- a/stop.sh +++ b/stop.sh @@ -7,6 +7,6 @@ cd $(dirname $0) PID=$(cat $PIDFILE 2>/dev/null) if [ -n "$PID" ]; then - echo "Stopping cowrie...\n" + echo "Stopping cowrie..." kill -TERM $PID fi