shell/ target=_blank class=infotextkey>shell脚本连续ping多台主机:
#!/bin/sh # #fileName:ping.sh #
if test $# -eq 0 then echo "Please input IP!" else for ipstr in $* do ping -c5 $ipstr >>Host.txt echo "" >> Host.txt done fi
CopyRight © 2010-2021 脚本学堂 Jb200.com , All Rights Reserved.