Shell编程之位置变量

       linux中命令可以接受参数,同样的,shell脚本也可以接受参数。这些参数用$1、$2、$3…$n表示。

      $0  表示脚本本身

      $1  传递给脚本的第1个参数

$2  传递给脚本的第2个参数

$3  传递给脚本的第3个参数

      $n  传递给脚本的第n个参数

$#     表示传递的参数个数用

      $*     传递给脚本的全部参数,所有参数合为一个字符串

      $@   传递给脚本的全部参数,每个参数是一个独立的字符串

               $@  $* 只在被双引号包起来的时候才会有差异

示例:不同位置变量的引用方法。

blob.png

1、编写脚本/root/bin/systeminfo.sh,显示当前主机系统信息,包括主机名,IPv4地址,操作系统版本,内核版本,CPU型号,内存大小,硬盘大小。

#!/bin/bash
#author:zmingbo
#
system_release=`cat /etc/redhat-release`
ip_addr=`ifconfig  | sed -n -r 's@.*addr:(.*) Bcast.*$@\1@p'`
kernel_version=`uname -r`
cpuinfo=`cat /proc/cpuinfo | sed -r -n 's@model name.*:(.*)$@\1@p'`
memsize=`free -mh | grep Mem |tr -s " " | cut -d " " -f 2`
disksize=`fdisk -l| sed -n "/\/dev\/sd[a-z]:/p"|cut -d : -f 2 | 
            cut -d " " -f 2 | tr -s "\n" ":" | 
            sed  's@:\$@@'| sed  's@:@+@'` 
total_disksize=`echo $disksize |bc`

echo "The hostname is `hostname` "
echo "The release is $system_release "
echo "The kernel version is $kernel_version"
echo "The Disksize is $total_disksize G"
echo "The cpu is $cpuinfo"
echo "The mem size is $memsize"
for i in $ip_addr;do
	echo "IPv4 adress is $i "
done

blob.png

2、编写脚本/root/bin/backup.sh,可实现每日将/etc/目录备份到/root/etcYYYY-mm-dd中

#!/bin/bash
#
cp -a /etc/.  /root/etc`date +%Y-%m-%d`

blob.png

3、编写脚本/root/bin/disk.sh,显示当前硬盘分区中空间利用率最大的值

#!/bin/bash
use=`df -Th | sed -n '/\dev\/sd[a-z]\+[0-9]\+/p' | 
tr -s " " | cut -d " " -f 6 | sort -nr | head -n 1|tr -d "%"`
echo "The bigest utilization is $use"
if [ $use -gt 80 ];then
	wall "Disk will be full"
else
	echo "work well"
fi

blob.png

4、编写脚本/root/bin/links.sh,显示正连接本主机的每个远程主机的IPv4地址和连接数,并按连接数从大到小排序

#!/bin/bash
#
netstat -nt | sed -n '/^[\(tcp\)]/p' |tr -s " " |cut -d " " -f 5 |
cut -d : -f 1 | sort -n | uniq -c | sort -nr

blob.png

5、写一个脚本/root/bin/sumid.sh,计算/etc/passwd文件中的第10个用户和第20用户的ID之和

#!/bin/bash
#
user10id=`cat  /etc/passwd | head | tail -n1 | cut -d : -f 3`
user20id=`cat  /etc/passwd | head -n20 | tail -n1 | cut -d : -f 3`
idsum=$[$user10id+$user20id]
echo "The id sum is $idsum"

 blob.png

6、写一个脚本/root/bin/sumspace.sh,传递两个文件路径作为参数给脚本,计算这两个文件中所有空白行之和 

#!/bin/bash
#
if [ $# -lt 1 ];then
	echo "Two files needed"
	exit 222
fi

flines=`cat $1 |grep -E "^$"| wc -l`
slines=`cat $2 |grep -E "^$"| wc -l`

let sumlines=$flines+$slines
echo "Total empty lines  is $sumlines"

blob.png

7、写一个脚本/root/bin/sumfile.sh,统计/etc, /var, /usr目录中共有多少个一级子目录和文件

#!/bin/bash
#
etc_dir_num=`ls -Al /etc|grep "^d.*" |wc -l`
var_dir_num=`ls -Al /var|grep "^d.*" |wc -l`
usr_dir_num=`ls -Al /usr|grep "^d.*" |wc -l`
total_dir_num=$[$etc_dir_num+$var_dir_num+$usr_dir_num]

etc_file_num=`ls -Al /etc | grep "^-.*" | wc -l`
var_file_num=`ls -Al /var | grep "^-.*" | wc -l`
usr_file_num=`ls -Al /usr | grep "^-.*" | wc -l`
total_file_num=$[$etc_file_num+$var_file_num+$usr_file_num]

etc_total_num=`ls -Al /etc |  wc -l`
var_total_num=`ls -Al /var |  wc -l`
usr_total_num=`ls -Al /usr |  wc -l`
total_num=$[$etc_total_num+$var_total_num+$usr_total_num]

echo "/etc & /var &/usr total  directory is $total_dir_num"
echo "/etc & /var &/usr total  file is $total_file_num"
echo "/etc & /var &/usr total  files and directory is $total_num"

blob.png 

8、写一个脚本/root/bin/argsnum.sh,接受一个文件路径作为参数;如果参数个数小于1,则提示用户“至少应该给一个参数”,并立即退出;如果参数个数不小于1,则显示第一个参数所指向的文件中的空白行数 

#!/bin/bash
#
if [ $# -lt 1 ];then
	echo " 1 asrg expected"
	exit 222
else
	sum=`cat $1 | grep "^$" |wc -l`
	echo "$1 has $sum empty lines "
fi

blob.png

9、写一个脚本/root/bin/hostping.sh,接受一个主机的IPv4地址做为参数,测试是否可连通。如果能ping通,则提示用户“该IP地址可访问”;如果不可ping通,则提示用户“该IP地址不可访问” 

#!/bin/bash
#
if [ $# -lt 1 ];then
	echo -e "\033[31mOne ipaddr is expected\033[0m"
	exit 22
fi

if echo "$1" |grep -E -o "([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-4])\.
([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-4])\.
([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-4])\.
([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-4])" >/dev/null;
then
	ping -c1 -W1 $1 &> /dev/null && echo "$1 is reachable" || echo "$1 is unreachable"
else
	echo -e "\033[31mPlease enter correct ip adress\033[0m"
	exit 22
fi

blob.png

10、chmod -rw /tmp/file1,编写脚本/root/bin/per.sh,判断当前用户对/tmp/fiile1文件是否不可读且不可写 

#!/bin/bash
#
file=/home/hadoop/test.txt
if [ -r $file ] && [ -w $file ];then
	echo "I can read & write $file"
else
	echo "I can't read or write $file"
fi

blob.png

11、编写脚本/root/bin/nologin.sh和login.sh,实现禁止和充许普通用户登录系统。

1、nologin.sh
#!/bin/bash
#
file=/etc/nologin
if [ -e $file ];then
	echo "Common user can't login system already"
else
	touch $file
	echo "Common user can't login system now"
fi
2、login.sh
#!/bin/bash
#
file=/etc/nologin
if [ -e $file ];then
	rm -fr /$file > /dev/null
	echo "Common user could login system now!"
else
	echo "Common user could login system already"
fi

 

blob.png

12、写一个脚本/root/bin/hostping.sh,接受一个主机的IPv4地址做为参数,先判断是否合格IP,否,提示IP格式不合法并退出,是,测试是否可连通。如果能ping通,则提示用户“该IP地址可访问”;如果不可ping通,则提示用户“该IP地址不可访问”

#!/bin/bash
#
if [ $# -lt 1 ];then
	echo -e "\033[31mOne ipaddr is expected\033[0m"
	exit 22
fi

if echo "$1" |grep -E -o "([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-4])\.
([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-4])\.
([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-4])\.
([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-4])" >/dev/null;
then
	ping -c1 -W1 $1 &> /dev/null && echo "$1 is reachable" || echo "$1 is unreachable"
else
	echo -e "\033[31mPlease enter correct ip adress\033[0m"
	exit 22
fi

 

blob.png

13、计算1+2+3+…+100的值

#!/bin/bash
#
num=1
sum=0
while [ $num -le 100 ];do
	sum=$[$num+$sum]
	num=$[$num+1]
done
echo $sum

 

blob.png

14、计算从脚本第一参数A开始,到第二个参数B的所有数字的总和,判断B是否大于A,否提示错误并退出,是则计算之

#!/bin/bash
#
sum=0
if [ $# -lt 2 ];then
	echo "Two int number needed"
	exit 222
elif [ $1 -eq 0 ] &> /dev/null || [ $1 -lt 0 ] &> /dev/null;then
	echo "Please enter two int number,and the second arg must bigger than the first arg"
	exit 22
elif [ $1 -gt 0 ] &> /dev/null && [ $2 -gt 0 ]  &>/dev/null && [ $2 -gt $1 ] &> /dev/null;then
	for  ((i=$1;i<=$2;i++));do
		sum=$[$sum+$i]
	done
	echo $sum
else
	echo "Please enter two int number,and the second arg must bigger than the first arg"
	exit 22
fi

blob.png

原创文章,作者:M20-1钟明波,如若转载,请注明出处:http://www.178linux.com/33575

(0)
M20-1钟明波M20-1钟明波
上一篇 2016-08-12
下一篇 2016-08-12

相关推荐

  • linux 启动管理

    1、Linux系统启动流程:POST 加电自检 — BIOS(Boot Sequence)–>MBR(bootloader,446)(加载前512字节后的驱动程序,进入/boot目录,加载内核)–>Kernel–>initrd–>(系统根路径 /)(ROOTFS)/sbin/…

    Linux干货 2017-09-03
  • 学习新技术的10个建议

    我们生活在一个振奋人心的时代。我们可以越来越方便廉价地获得大量学习资源。这些资源的传播载体由最初的教室被变成了博客,技术论坛等。坐拥如此众多的学习资源,我们没有任何理由不去好好利用。随之而来的问题便是如何在这知识的海洋中选择自己的前进方向。在这篇文章中,我将简要概括一些技术学习的建议,希望可以给你带来一些启发。 尽管我的建议主要涉及的是软件开发方面,但是这些…

    Linux干货 2015-03-20
  • 修改文件的权限

        linux中一切皆文件,文件有权限,所有者,所属组,大小等属性。文件所有者是指创建文件的用户,所属组是指创建文件的用户属于哪一个主要的组(用户的主组只能有一个)。     用户对文件进行各种操作的前提是有相应的权限,所以有些文件我们只能读,不能写,而有些文件既可以读写,还可以更改内容,下面就…

    2017-07-30
  • LINUX下用户管理命令简述

    LINUX下用户管理命令简述 添加用户并设置密码 useradd [用户名] 创建用户 [root@localhost ~]# useradd jack [root@localhost ~]# cat /etc/shadow | grep jack jack:!!:17257:0:99999:7::: passwd [用户名] 设置密码 [root@loca…

    Linux干货 2017-04-05
  • CentOS7编译安装LAMP—php-fpm

    inux的环境是: [root@localhost ~]# lsb_release -a LSB Version:     :core-4.1-amd64:core-4.1-noarch Distributor ID: CentOS Description:     CentOS…

    Linux干货 2016-12-21
  • 管中窥豹—linux命令

    命令行选项风格: 1、原始unix风格     a、命令行选项以连字符'-'开头,后跟单个字符表示选项,选项后面跟着取值,如:mysql -hlocalhost      b、选项不带取值的,可以组合在一起,如:sed -n -r 可以写成 sed -nr  …

    Linux干货 2016-10-30

评论列表(2条)

  • 马哥教育
    马哥教育 2016-08-16 15:52

    作业完成的很好,总结这里需要用点心哦,慢慢来,可以先模仿别人的写,尝试着写出优秀的博客。加油!!!

    • M20-1钟明波
      M20-1钟明波 2016-08-16 20:19

      @马哥教育好的,以后会加强知识点的总结。