Background commands
Running commands in the background
#!/bin/bash
# Title: Killstream multi example
#
# Description: Kill multiple types of streams
NETMODE BRIDGE
LED R SINGLE
KILLSTREAM br-lan ANY 'Authorization: Basic' 80 &
KILLSTREAM br-lan ANY 'Foobar' 80 &
KILLSTREAM br-lan ANY '[0-9}{3}-[0-9]{2}-[0-9]{4}' 80 &
waitWaiting for commands
Running groups of commands in the background
Last updated