From this post, I stumbled upon the following bash script.
stunnel4 stunnel/dev_https &
python manage.py runserver &
python manage.py runserver 8001
What does an and operator do in this case?
From this post, I stumbled upon the following bash script.
stunnel4 stunnel/dev_https &
python manage.py runserver &
python manage.py runserver 8001
What does an and operator do in this case?
The ampersands put the execution of those commands/processes into the background. The commands are started and then control immediately returns to the script to execute the next line. (In other words, the script is not blocked while they run/finish.)