shell编程进阶

2、编写脚本/root/bin/yesorno.sh,提示用户输入yes或no,并判断用户输入的是yes还是no,或是其它信息
read -p “Enter you choice yes|no:” Choice
Choice1=`echo $Choice | tr ‘[a-z]’ ‘[A-Z]’`
case $Choice1 in
Y|YES)
echo “you select yes.”
;;
N|NO)
echo “you select no.”
;;
*)
echo “you select others.”
;;
esac

3、编写脚本/root/bin/filetype.sh,判断用户输入文件路径,显示其文件类型(普通,目录,链接,其它文件类型)
read -p “Please input the filepath: ” f
if [ ! -e $f ];then
echo “the file is not exited,please input the right filepath” && exit
elif [ -f $f ];then
echo “the file is regular file”
elif [ -d $f ];then
echo “the file is directory file”
elif [ -l $f ];then
echo “the file is link file”
else
echo “the file is other type”
fi
4、编写脚本/root/bin/checkint.sh,判断用户输入的参数是否为正整数
read -p “please input : ” number
if [[ “$number” =~ ^[0-9]+$ ]];then
echo zhengshu
else
echo “not zhengshu”
fi
~
for
1、判断/var/目录下所有文件的类型
for type in /var/* ;do
if [ -h $type -o -L $type ];then
echo “the $type is a link file”
elif [ -f $type ];then
echo “the $type is a reguler file”
elif [ -d $type ];then
echo “the $type is a dir file”
elif [ -b $type ];then
echo “the $type is a block file”
elif [ -c $type ];then
echo “the $type is a character file”
elif [ -p $type ];then
echo “the $type is a pipe file”
else
echo “the $type is other file”
fi
done
wait
2、添加10个用户user1-user10,密码为8位随机字符
for uid in `seq 1 6`;do
grep “^user$uid\>” /etc/passwd &>/dev/null
if [ $? -eq 0 ];then
echo the user$uid is exited
else
useradd user”$uid”
passwd=`tr -dc ‘a-zA-Z0-9’ > /app/user.log
echo “$passwd” | passwd –stdin user”$uid” &> /dev/null && echo user”$uid” is created Suc
cessfully!!!
fi
done
3、/etc/rc.d/rc3.d目录下分别有多个以K开头和以S开头的文件;分别读取每个文件,以K开头的输出为文件加stop,以S开头的输出为文件名加start,如K34filename stop S66filename start
k=`ls /etc/rc.d/rc3.d | egrep -i “^k.*”`
s=`ls /etc/rc.d/rc3.d | egrep -i “^s.*”`
for fk in $k;do
echo -e “$fk\tstop”
done
for fs in $s;do
echo -e “$fs\tstart”
done
4、编写脚本,提示输入正整数n的值,计算1+2+…+n的总和
read -p “please input number: ” n
if [[ “$n” =~ ^[0-9]+$ ]];then
sum=0
for n in `seq $n`;do
let sum=sum+$n
done
echo “the sumnumber is $sum”
else
echo “please input right number!”
fi
5、计算100以内所有能被3整除的整数之和
sum=0
m=3
for n in `seq 100`;do
let a=n%m
if [ $a -eq 0 ];then
let sum=sum+n
fi
done
echo $sum
6、编写脚本,提示请输入网络地址,如192.168.0.0,判断输入的网段中主机在线状态
#!/bin/bash
read -p “Please input IP: ” ip
if [[ “$ip” =~ ([[:digit:]]{1,3}\.){3}[[:digit:]]{1,3} ]];then
a=`echo $ip | cut -d. -f1-3`
for b in {0..254};do
{
if ping -c1 -W1 $a.$b &> /dev/null;then
echo $a.$b is up!
fi
}&
done
else
echo please input the right IP!
fi
wait
7、打印九九乘法表
for a in `seq 9`;do
for b in `seq $a`;do
echo -ne “$b*$a=$[$b*$a]\t”
done
echo
done
8、在/testdir目录下创建10个html文件,文件名格式为数字N(从1到10)加随机8个字母,如:1AbCdeFgH.html
#!/bin/bash
if [ ! -d /testdir ];then
mkdir /testdir/ &> /dev/null
fi
for n in {1..10};do
for a in `cat /dev/urandom |tr -dc “a-zA-Z”|head -c 8`;do
touch /testdir/$n$a.html
done
echo $n$a.html is already created!
done
9、打印等腰三角形
#!/bin/bash
read -p “请输出层数:” L
if [[ “$L” =~ ^[0-9]+$ ]];then
for k in `seq $L`;do
for a in `seq $[$L-$k]`;do
echo -n ” “
done
for b in `seq $[$k*2-1]`;do
echo -en “\033[3$Yan;5m?\033[0m”
done
echo
done
else
echo Please input the number!
fi

用while实现
1、编写脚本,求100以内所有正奇数之和
第一种:for
11
#!/bin/bash
declare -i num=0
for i in `seq 1 2 100`
do
num+=i
# num=$[$num+$i]
done
echo “sum is $num”
执行结果:
[root@os01 /]# ./1.sh
sum is 2500
第二种:while
#!/bin/bash
#
declare -i i=1
declare -i sum=0
while [ $i -le 100 ]
do
sum+=i
let i+=2
done
echo “sum is $sum”
#执行结果
[root@os01 /]# ./2.sh
sum is 2500
第三种:for contniue
#!/bin/bash
declare -i i=1
declare -i sum=0
for i in `seq 1 100`
do
if [ $[$i%2] -eq 0 ]
then
continue
fi
sum+=i
done
echo “sum is $sum”
#执行结果
[root@os01 /]# ./3.sh
sum is 2500

第四种:until
#!/bin/bash
#
declare -i i=0
declare -i sum=0
until [ $i -eq 100 ]
do
let i++
if [ $[$i%2] -eq 0 ]
then
continue
fi
sum+=i
done
echo “sum is $sum”
[root@os01 /]# ./4.sh
sum is 2500
2、编写脚本,提示请输入网络地址,如192.168.0.0,判断输入的网段中主机在线状态,并统计在线和离线主机各多少
#!/bin/bash
read -p “please input the ip(eg:172.18.0.1): ” ip
network=`echo $ip |cut -d “.” -f1-3` #C类地址前三位为网络id
i=1 #ip一般从1开始
up=0
down=0
while [ $i -le 254 ];do #255作为网段内的广播ip,所以取1-254之内的循环
if ping -c1 -w1 $network.$i > /dev/null;then #ping一次一秒
echo $network.$i is up!
let up++ #统计开机主机数
else
echo $network.$i is down!
let down++ #统计关机主机数
fi
let i++
done
3、编写脚本,打印九九乘法表
i=1
while [ $i -le 9 ];do
j=1
while [ $j -le $i ];do
mul=$[$i*$j]
echo -ne “$i*$j=$mul\t”
j=$[$j+1]
done
echo
i=$[$i+1]
done
4、编写脚本,利用变量RANDOM生成10个随机数字,输出这个10数字,并显示其中的最大值和最小值
random.sh

cat /dev/null > /root/random.txt
declare -i num=1
while [ $num -le 10 ];do
echo $RANDOM | tee -a /root/random.txt
let num++
done
echo “min: “
sort -n /root/random.txt | head -1
echo “max: “
sort -n /root/random.txt | tail -1

============================================

addr.sh

i=10
a=$RANDOM
max=$a
min=$a
while [ $i -ge 1 ]
do
[ $max -lt $a ] && max=$a
[ $min -gt $a ] && min=$a
echo “$a”
a=$RANDOM
let i–
done
echo “最大值$max”
echo “最小值$min”

============================================

declare -i MAX=0
declare -i MIN=0
for I in {1..10};do
MYRAND=$RANDOM
[ $I -eq 1 ] && MIN=$RANDOM
if [ $I -le 9 ];then
echo -n “$MYRAND,”
else
echo “$MYRAND”
fi
[ $MYRAND -gt $MAX ] && MAX=$MYRAND
[ $MYRAND -lt $MIN ] && MIN=$MYRAND
done
echo $MAX,$MIN
5、编写脚本,实现打印国际象棋棋盘
#!/bin/bash
k=0
while [ $k -lt 4 ];do
l=0
while [ $l -lt 4 ];do
echo -ne “\033[41m \033[0m”
echo -ne “\033[43m \033[0m”
let l++
done
echo
l=0
while [ $l -lt 4 ];do
echo -ne “\033[41m \033[0m”
echo -ne “\033[43m \033[0m”
let l++
done
echo
l=0
while [ $l -lt 4 ];do
echo -ne “\033[43m \033[0m”
echo -ne “\033[41m \033[0m”
let l++
done
echo
l=0
while [ $l -lt 4 ];do
echo -ne “\033[43m \033[0m”
echo -ne “\033[41m \033[0m”
let l++
done
echo
let k++
done

本文来自投稿,不代表Linux运维部落立场,如若转载,请注明出处:http://www.178linux.com/87234

(2)
1589344251815893442518
上一篇 2017-09-16 11:56
下一篇 2017-09-16 13:13

相关推荐

  • python第二周

    #python数据结构(list) ## 分类 数值型:int、float、complex、bool 序列对象:字符串 str   列表  list   元组  tuple 键值对: 集合 set   字典 dict   ## 数字的处理函数 math.e  math.pi: 自如常数和π round():  四舍六入五去偶 floor():  取…

    Linux干货 2017-09-23
  • Sed简介

    Sed简介    一、简介   sed全称是:Stream EDitor。sed命令的功能同awk类似,差别在于,sed简单,对列处理的功能要差一些,awk的功能复杂,对列处理的功能比较强大。  sed 是一种在线编辑器,它一次处理一行内容。处理时,把当前处理的行存储在临时缓冲区中,称为“模式空间”(pattern s…

    Linux干货 2015-05-11
  • 重构-改善既有代码的设计:重构原则(二)

    1.什么是重构 重构(Refactoring):在不改变软件的功能和外部可见性的情况下,为了改善软件的结构,提高清晰性、可扩展性和可重用性而对软件进行的改造,对代码内部的结构进行优化。 2.为何重构   1)改进软件设计(整理代码) 重构和设计是相辅相成的,它和设计彼此互补。有了重构,你仍然必须做预先的设计,但是不必是最优的设计,只需要一个合理的解…

    Linux干货 2015-04-07
  • 迁移home到独立分区

    1,fdisk  /dev/sda  创建10G的分区 Lsblk 查看下新创建分区是否同步 partx  -a  /dev/sda 同步 2,mkfs.ext4  /dev/sda6  -L  /home 创建文件系统跟卷标 3,mkdir  /mnt/home  创建一个挂载点 mount  /dev/sda6  /mnt/home 挂载 4,cp  -…

    2017-12-14
  • Linux 第四天: (07月28日) 练习和作业

    Linux 第四天: (07月28日) 练习和作业         定义别名命令baketc, 每天将/etc/目录下所有文件, 备份到/testdir独立的子目录下, 并要求子目录格式为backupYYYY-mm-dd, 备份过程可见 alias baketc='cp -a /etc/ /testdir/b…

    Linux干货 2016-08-08
  • 2016全球运维大会,优云蒋君伟演讲“CMDB+自动化的管理融合”成一大亮点

    2016全球运维大会于9月23日-24日在上海盛大开幕。作为国内运维行业的重量级大会,优云产品总监蒋君伟在自动化专场与来自全国各地的运维同行一起探讨、分享业内自动化运维的最佳实践。现场情绪热烈,气氛高涨,成为了本届全球运维大会的一大亮点。 全新梳理自动化与CMDB的融合之道 全球运维大会当天,运维自动化专场很多大牛针对自动化运维管理中的CMDB进行了激烈的讨…

    Linux资讯 2016-12-05