123456789101112131415161718 |
- #!/bin/bash
- data=( `cat /etc/shadowsocks-libev/ss.conf | grep '^###' | cut -d ' ' -f 2`);
- now=`date +"%Y-%m-%d"`
- for user in "${data[@]}"
- do
- exp=$(grep -w "^### $user" "/etc/shadowsocks-libev/ss.conf" | cut -d ' ' -f 3)
- d1=$(date -d "$exp" +%s)
- d2=$(date -d "$now" +%s)
- exp2=$(( (d1 - d2) / 86400 ))
- printf "$user\n$exp2\n" | addss
- done
- rm -f /etc/shadowsocks-libev/ss.conf
- data=( `cat /etc/wireguard/wg0.conf | grep '^### Client' | cut -d ' ' -f 3`);
- now=`date +"%Y-%m-%d"`
- for user in "${data[@]}"
- do
- chmod 777 /home/vps/public_html/$user.conf
- done
|