lighthouse/scripts/local_testnet/kill_processes.sh

15 lines
197 B
Bash
Raw Normal View History

#!/usr/bin/env bash
# Kill processes
# First parameter is the file with
# one pid per line.
if [ -f "$1" ]; then
while read pid
do
echo killing $pid
kill $pid
done < $1
fi