-
Notifications
You must be signed in to change notification settings - Fork 432
/
user.sh
80 lines (71 loc) · 1.75 KB
/
user.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/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 ""
echo '1.一键添加用户'
echo '2.添加用户'
echo '3.删除用户'
echo '4.修改用户'
echo '5.显示用户流量信息'
echo '6.显示用户名端口信息'
echo "直接回车返回上级菜单"
while :; do echo
read -p "请选择: " userc
[ -z "$userc" ] && ssr && break
if [[ ! $userc =~ ^[1-6]$ ]]; then
echo "输入错误! 请输入正确的数字!"
else
break
fi
done
if [[ $userc == 1 ]];then
bash /usr/local/SSR-Bash-Python/user/easyadd.sh
echo ""
bash /usr/local/SSR-Bash-Python/user.sh
fi
if [[ $userc == 2 ]];then
bash /usr/local/SSR-Bash-Python/user/add.sh
echo ""
bash /usr/local/SSR-Bash-Python/user.sh
fi
if [[ $userc == 3 ]];then
bash /usr/local/SSR-Bash-Python/user/del.sh
echo ""
bash /usr/local/SSR-Bash-Python/user.sh
fi
if [[ $userc == 4 ]];then
bash /usr/local/SSR-Bash-Python/user/edit.sh
echo ""
bash /usr/local/SSR-Bash-Python/user.sh
fi
if [[ $userc == 5 ]];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 -l -u $uid
fi
if [[ $lsid == 2 ]];then
read -p "输入端口号: " uid
cd /usr/local/shadowsocksr
python mujson_mgr.py -l -p $uid
fi
echo ""
bash /usr/local/SSR-Bash-Python/user.sh
fi
if [[ $userc == 6 ]];then
python /usr/local/SSR-Bash-Python/user/show_all_user_info.py
echo ""
bash /usr/local/SSR-Bash-Python/user.sh
fi