GuessThePrice/source/run.sh

14 lines
208 B
Bash
Raw Permalink Normal View History

2022-05-28 15:53:09 +00:00
#!/bin/bash
# Start the first process
python bot.py &
# Start the second process
python daily_challenge.py &
# Wait for any process to exit
wait -n
# Exit with status of process that exited first
exit $?