PyInventory/docker/kill_python.sh

6 wiersze
68 B
Bash
Executable File

#!/bin/sh
set -ex
for pid in $(pidof python3); do kill $pid; done