Forums

Why my second part of command not working on Always on task

Here is my command python3.9 /home/muben/tommy.py && python3.9 /home/muben/site/goldvip.py Why only the first part is working

It depends on what the first part is doing and what it returns. If it has an infinite loop inside it will stuck doing it; if it returns an error code the second part (after &&) will not be performed, as it means "do that only if the previous command succeeded".