I can use this bash script to run two tasks simultaneously independent of each other
Code: Select all
#!/bin/bash
/home/pi/gpio/led_Startup.py &
# Blink led 1 at random
/home/pi/gpio/blink_Led_1.py &
# Blink led 2 at random
/home/pi/relay/blink_Led_2.py &
Is it threading, multitasking, parallel processing?