mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
13f084eb58
Double quote to prevent globbing and word splitting. https://github.com/koalaman/shellcheck/wiki/SC2086 Signed-off-by: Dan Callahan <danc@element.io>
15 lines
262 B
Bash
Executable File
15 lines
262 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
DIR="$( cd "$( dirname "$0" )" && pwd )"
|
|
|
|
FILES=$(find "$DIR" -name "*.pid" -type f);
|
|
|
|
for pid_file in $FILES; do
|
|
pid=$(cat "$pid_file")
|
|
if [[ $pid ]]; then
|
|
echo "Killing $pid_file with $pid"
|
|
kill "$pid"
|
|
fi
|
|
done
|
|
|