我帮你写个脚本吧。
1 在/下写个文件
vi ip.txt
192.168.1.10
172.16.10.10
200.200.200.200
wq
2 建个空文件 touch /shuchu.txt
3 写没缺银扮余脚本
vim ping.sh
#!/枯宴bin/bash
A=`cat /ip.txt`
for B in $A
do
ping -c 3 $B >>/shuchu.txt
done
wq
4 执行脚本 sh ping.sh
5 查看结果 more /shuchu.txt
错了,是这肆让样的@echo off
:ip
cls
set /p a=请输入IP1地址:
set /p b=请输入IP2地址:
set /p a1=请输入IP1的Ping次数:
set /p b1=请裂返局输入IP2的世银Ping次数:
Ping -n %a1% %a%
Ping -n %b1% %b%
echo PING完成
pause
goto :ip
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)