I want to kill python interpeter - The intention is that all the python files that are running in this moment will stop (without any informantion about this files). obviously th
pgrep -f youAppFile.py | xargs kill -9
pgrep returns the PID of the specific file will only kill the specific application.
pgrep