mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
synced 2025-11-02 21:13:44 +00:00
12 lines
173 B
Bash
Executable File
12 lines
173 B
Bash
Executable File
#!/bin/sh
|
|
# Evil dial script..
|
|
|
|
while true;
|
|
do
|
|
chat -v -f all_dial < /dev/ttyACM0 > /dev/ttyACM0
|
|
sleep 5s
|
|
chat -v -f hangup < /dev/ttyACM0 > /dev/ttyACM0
|
|
sleep 2s
|
|
done
|
|
|