首页 > 代码库 > shell脚本集合
shell脚本集合
#本人新手写的不好之处,一定要指点我。我会不定期更新这个内容。
1、输入IP地址查找/etc/hosts文件中指定的域名
#!/bin/sh #author vperson #qq 737304790 #Enter the specified IP to find the corresponding domain name in the hosts file flag=0 if [ $# -ne 1 ] then echo "Input error" echo "Usage: $0 127.0.0.1" exit 1 fi exec < /etc/hosts while read line do if [ "$1" = "`echo $line|awk ‘{print $1}‘`" ] then flag=1 printf "Successfully find the domain name!\n" echo -e "\033[31m $1==>> `echo $line|awk ‘{print $2}‘` \033[0m" break fi done [ ${flag} -eq 0 ] && echo "No specified IP"
本文出自 “10846118” 博客,请务必保留此出处http://10856118.blog.51cto.com/10846118/1943506
shell脚本集合
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。