How to run multiple files at once?

Someone just made the same question some hours ago. Like in this topic: How can I have multiple files run using python?

dragonhunter1

4h

Try this bash script

python bot1.py &
python bot2.py &
python bot3.py
5 Likes