Gitiles
Code Review
Sign In
192.168.1.100
/
T800
/
4c744befe083d2faee3c7528c22590f4301a203c
/
.
/
IC
/
mtk
/
lib
/
liblynq-wifi6
/
scripts
/
get_interface_name.sh
blob: 4dc87170f1cec4052c97e6d955ecaef5ea6f6286 [
file
] [
log
] [
blame
]
you.chen
f54b2ba
2023-04-24 15:39:37 +0800
[
diff
] [
blame
]
1
#!/bin/sh
2
3
if
[
"$1"
==
"0"
];
then
4
echo
"wlan0"
5
elif
[
"$1"
==
"1"
];
then
6
echo
"ap0"
7
else
8
exit
1
9
fi
10