mirror of
https://github.com/DinoMalin/paranoia-1.0.git
synced 2025-10-29 03:05:59 +00:00
11 lines
219 B
Bash
11 lines
219 B
Bash
#!/bin/bash
|
|
|
|
while read -r line; do
|
|
line=$(echo "$line" | grep "\[CMD\]")
|
|
if [[ "$line" != "" ]]; then
|
|
cmd=$(echo $line | sed 's/\[[^]]*\]//' | sed 's/\[//' | sed 's/\]//')
|
|
bash -c "$cmd"
|
|
fi
|
|
done < /dev/ttyACM0
|
|
|