blob: 61b44d9ec4bc28306d3c7855ea15d5546a4b6d43 [file] [log] [blame]
you.chenc9928582023-04-24 15:39:37 +08001#!/bin/sh
2
3if [ "$1" == "0" ]; then
4 echo "wlan0"
5elif [ "$1" == "1" ]; then
6 echo "tether"
7else
8 exit 1
9fi
10