mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-28 12:02:00 +08:00
11 lines
288 B
Bash
11 lines
288 B
Bash
#!/bin/sh
|
|
. /usr/share/3ginfo/scripts/functions.sh
|
|
|
|
DEVICE=$(uci -q get 3ginfo.@3ginfo[0].device)
|
|
O=$(gcom -d $DEVICE -s /usr/share/3ginfo/scripts/virginmobile_pdu.gcom | cut -f2 -d\")
|
|
if [ ! -z "$O" ]; then
|
|
pdu2txt "$O"
|
|
else
|
|
echo "Problem operatora - brak możliwości sprawdzenia"
|
|
fi
|