Files

9 lines
156 B
Bash

#!/bin/bash
# Kill all the scripts:
echo "Killing the script."
pkill -9 -f "$(pwd)/wsio/finstitutions/trading/tick_out.py"
# All done:
echo "Done!"
exit 0