1 Star 0 Fork 0

笑着笑着就哭了/dailyuse-scripts

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
getvpnlist.sh 284 Bytes
一键复制 编辑 原始数据 按行查看 历史
笑着笑着就哭了 提交于 2020-02-29 20:26 . 保存脚本
#!/bin/bash
vpn_dir="/etc/openvpn/config/"
for file in `ls $vpn_dir | grep -v openvpnip_manifest`
do
cat $vpn_dir/$file | while read line
do
vpn_name=`echo $line | awk -F ' ' '{print $1}'`
vpn_ip=`echo $line | awk -F ' ' '{print $2}'`
echo ${vpn_name}","${vpn_ip}
done
done
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Shell
1
https://gitee.com/erheihei/dailyuse-scripts.git
git@gitee.com:erheihei/dailyuse-scripts.git
erheihei
dailyuse-scripts
dailyuse-scripts
master

搜索帮助