-
Notifications
You must be signed in to change notification settings - Fork 0
/
traffic.sh
66 lines (56 loc) · 1.46 KB
/
traffic.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/bin/bash
export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
#Check Root
[ $(id -u) != "0" ] && { echo "Error: You must be root to run this script"; exit 1; }
echo "1.显示所有用户流量信息"
echo "2.清空指定用户流量"
echo "3.清空全部用户流量"
echo "直接回车返回上级菜单"
while :; do echo
read -p "请选择: " tc
[ -z "$tc" ] && ssr && break
if [[ ! $tc =~ ^[1-3]$ ]]; then
echo "输入错误! 请输入正确的数字!"
else
break
fi
done
if [[ $tc == 1 ]];then
python /usr/local/SSR-Bash-Python/show_flow.py
echo ""
bash /usr/local/SSR-Bash-Python/traffic.sh
fi
if [[ $tc == 2 ]];then
echo "1.使用用户名"
echo "2.使用端口"
echo ""
while :; do echo
read -p "请选择: " lsid
if [[ ! $lsid =~ ^[1-2]$ ]]; then
echo "输入错误! 请输入正确的数字!"
else
break
fi
done
if [[ $lsid == 1 ]];then
read -p "输入用户名: " uid
cd /usr/local/shadowsocksr
python mujson_mgr.py -c -u $uid
echo "已清空用户名为 ${uid} 的用户流量"
fi
if [[ $lsid == 2 ]];then
read -p "输入端口号: " uid
cd /usr/local/shadowsocksr
python mujson_mgr.py -c -p $uid
echo "已清空端口号为${uid} 的用户流量"
fi
echo ""
bash /usr/local/SSR-Bash-Python/traffic.sh
fi
if [[ $tc == 3 ]];then
cd /usr/local/shadowsocksr
python mujson_mgr.py -c
echo "已清空全部用户的流量使用记录"
echo ""
bash /usr/local/SSR-Bash-Python/traffic.sh
fi