Shell编程综合实训

【实验十一】

1.下面给出了一个SHELL程序,试对其行后有#(n)形式的语句进行解释,并说明程序完成的功能。运行结果截图

#!/bin/bash                          #(1)
dir=$1                               #(2)
if [ -d $dir ]                       #(3)
then
  cd $dir                            #(4)
  for file in *                      
  do
if [-f $file ]                      #(5)
then 
cat $file                       #(6)
echoend of file $file”
    fi
  done
  else
echo “bad directory name $dir”   
fi

#(1)指出由那个解释器来执行内容
#(2)变量1赋值给dir
#(3)如果dir是所指目录
#(4)从当前目录进入dir目录
#(5)如果变量file是普通文件
#(6)显示file里的内容 程序功能:如果参数是一个合法的目录,就显示目录下面的所有的普通文件,如果不是就显示错误的目录信息。

2.试编写一个SHELL程序,该程序能接收用户从键盘输入的5个整数,然后求出其总和、最大值及最小值。

#!/bin/bash
read max
min=$max
sum=$max
i=1
while [ $i -lt 5 ]
do
 read x
 sum=`expr $sum + $x`
 if [ $max -lt $x ]
  then
   max=$x
 fi
 if [ $min -gt $x ]
  then
   min=$x
 fi
 i=`expr $i + 1`
done
echo "最小值是:$min "
echo "总和是:$sum"
echo "最大值是:$i"

执行

 sh t2.sh
1
2
3
4
5
最小值是:1 
总和是:15
最大值是:5

3. 写一个脚本:给脚本传递三个整数,判断其中的最大数和最小数,并显示出来。

#!/bin/bsah
read c
min=$c
man=$c
i=1
while [ $i -lt 3 ]
do
 read x
 if [ $c -lt $x ]
  then
   max=$x
 fi
 if [ $c -gt $x ]
  then
   min=$x
 fi
 i=`expr $i + 1`
done
echo "最大值是:$max"
echo "最小值是:$min"

执行

sh t3.sh
2
3
4
最大值是:4
最小值是:2          

4.设计一个shell程序计算n的阶乘。要求:
(1) 从命令行接收参数n;
(2) 在程序开始后立即判断n的合法性,即是否有参数,若有是否为正整数,若非法请给错误提示;
(3) 最后出计算的结果。

#!/bin/bash
if [ $# -eq 0 ]
 then echo -e "$0 no Params \a\n"
 exit 0
fi
x=`echo $1 | awk '/[^[:digit:]]/ { print $0 }'`
if [ "x$x" != "x" ]
  then echo -e "Input: $* error!\a"
  exit 1
fi
jiecheng=1;tmp=1
while [ $tmp -le $1 ]
 do
  jiecheng=$((jiecheng*tmp))
  tmp=$((++tmp))
 done
echo "$1 的阶乘是:$jiecheng"

执行

sh t4.sh 5
5 的阶乘是:120

5. 设计一个shell程序,添加一个新组为class1,然后添加属于这个组的30个用户,用户名的形式为stdxx,其中xx从01到30。 根据While循环的写出for循环程序(注意调试时,多次调试会出现用户已存在问题,每次执行前修改用户名)

#!/bin/bash
#for循环实现
i=1
groupadd class1
for((i=1;i<=30;i=i+1))
 do
  if [ $i -le 9 ]
   then
    USERNAME=stu0${i}
   else
    USERNAME=stu${i}
  fi
useradd -G class1 $USERNAME
done

你可能感兴趣的:(linux作业)