SuperCS's picture
Add files using upload-large-folder tool
b4feb07 verified
raw
history blame contribute delete
213 Bytes
PIDS=$(ps aux | grep python | grep -v grep | awk '{print $2}')
for PID in $PIDS; do
# echo "Killing Python process with PID: $PID"
kill -9 $PID
done
echo "All Python processes have been terminated."