老李分享:《Linux Shell脚本攻略》 要点

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了老李分享:《Linux Shell脚本攻略》 要点相关的知识,希望对你有一定的参考价值。

1、打印网络接口列表
[ touch_more]# ifconfig | cut -c-10 | tr -d ‘ ‘ | tr -s ‘\n‘
eth0
lo
//www.qixoo.qixoo.com//cut -c-10 ;  输出前10个字符;
//tr -d ‘ ‘ ;      删除所有空格;
//tr -s ‘\n‘;     压缩重复的换行符
 
2、查看名字服务器
[ touch_more]# cat /etc/resolv.conf
# Generated by NetworkManager
domain localdomain
search localdomain
nameserver 192.168.119.2
 
3、DNS查找
[ touch_more]# nslookup www.csdn.net
Server:         192.168.119.2
Address:        192.168.119.2#53

Non-authoritative answer:
www.csdn.net    canonical name = www.csdn.net.aqb.so.
Name:   www.csdn.net.aqb.so
Address: 14.17.69.22
 
4、列举出局域网中同一网段的所有的活动主机

[ program_test]# cat list_active_hosts.sh
#!/bin/bash

for ip in 192.168.119.{1..255} ;
do
ping $ip -c 2 &> /dev/null;

if [ $? -eq 0 ];
then
echo $ip is active!
fi
done
[ program_test]# ./list_active_hosts.sh
192.168.119.1 is active!
192.168.119.2 is active!

5、系统运行时间监视

<pre name="code" class="plain" style="font-size: 14px;">[ program_test]# cat ssh_test.sh
#!/bin/bash

IP_LIST="192.168.119.1 192.168.119.2 192.168.119.128"
USER="yxy"

for ip in $IP_LIST;
do
utime=$(ssh [email protected]$ip uptime | awk ‘{ print $3 }‘ )
echo $ip uptime: $utime
done
























































以上是关于老李分享:《Linux Shell脚本攻略》 要点的主要内容,如果未能解决你的问题,请参考以下文章

网站点评赠书:《Linux Shell脚本攻略(第2版)》

linux shell 脚本攻略

shell脚本学习1(Linux脚本攻略)

《Linux Shell 脚本攻略》读书笔记

Linux Shell脚本攻略:shell中各种括号()(())[][[]]{}的作用

SHELL脚本攻略(读书笔记)--1.11 命令替换和子shell的作用