- Added support to group commands to run together using the new group separator symbol (:::)
bash
pyallel "echo boil kettle" "sleep 1" ::: "echo make coffee"
The above will print `boil kettle` and sleep for 1 second first before printing `make coffee`
Command groups are ran in the sequence you provide them, and if a command group fails
(if a command fails inside the command group) the rest of the command groups in the sequence are not run