9 lines
163 B
Bash
9 lines
163 B
Bash
#!/bin/bash
|
|
|
|
# Kill all the scripts:
|
|
echo "Killing the script."
|
|
pkill -9 -f "$(pwd)/background/finstitutions/trading/tick_save.py"
|
|
|
|
# All done:
|
|
echo "Done!"
|
|
exit 0 |