lighthouse/scripts/local_testnet/kill_processes.sh
2022-12-02 19:50:45 +05:30

20 lines
298 B
Bash
Executable File

#!/usr/bin/env bash
# Kill processes
set -Euo pipefail
# First parameter is the file with
# one pid per line.
if [ -f "$1" ]; then
while read pid
do
# handle the case of blank lines
[[ -n "$pid" ]] || continue
echo killing $pid
kill $pid || true
done < $1
fi