commit 8f01f836eff5753a3608ad84aef8cafc7373d3ee parent 311023fff5490f73b66c1a41fbaac468c37444bb Author: Beau <cbeauhilton@gmail.com> Date: Fri, 2 Dec 2022 17:03:29 -0600 remove stop script, no longer needed Diffstat:
D | stop | | | 13 | ------------- |
1 file changed, 0 insertions(+), 13 deletions(-)
diff --git a/stop b/stop @@ -1,13 +0,0 @@ -#!/bin/bash -touch temp.text -lsof -n -i4TCP:$1 | awk '{print $2}' > temp.text -pidToStop=`(sed '2q;d' temp.text)` -> temp.text -if [[ -n $pidToStop ]] -then -kill -9 $pidToStop -echo "Congrates!! $1 is stopped." -else -echo "Sorry nothing running on above port" -fi -rm temp.text