shell脚本程序
Posted 梅诺
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本程序相关的知识,希望对你有一定的参考价值。
学习shell脚本是需要经过大量的练习来巩固语法的(就像我们当初学习C语言是一样的)。下面为自己在用shell编写的脚本程序。
1.求1.....100所有数的总和(程序如下)
#! /bin/bash
i=0
sum=0
for (( ; i<=100; ++i ))
do
let sum+=i
done
echo $sum
最终输出结果为50502.使用递归的方法求出1....100的所有数总和(程序如下)
<span style="font-family:SimSun;">#! /bin/bash
function add()
local tmp1=$1
local tmp2=0
if [ $tmp1 -le 1 ];then
sum=1
else
tmp2=$(( $tmp1 - 1 ))
add $tmp2
sum=(( $tmp1 + $tmp2 ))
fi
done
echo $sum</span>
3.编写一个进度条
<span style="font-size:18px;"><strong>#! /bin/bash
function proc_bar()
rate=0
str=#"
arr=("|" "/" "-" "\\\\")
while [ $rate -le 100 ]
do
index=rate%4
printf " [%-100s] [%d%%] [%s] \\r" "$str" "$rate" "$arr[$index]"
str=$str"#"
let rate++
usleep 10000
done
printf "\\n"
proc_bar</strong></span>
4.找出数组元素的最大值,最小值,以及求出数组元素的平均值(代码如下)
<strong>#! /bin/bash
function proc()
arr=(1 2 33 44 55 66
max=$arr[0]
min=$arr[0]
argv=0
i=0
for (( ; i<$#arr[@]; ++i ))
do
if [ $max -lt $arr[$i] ];then
max=$arr[$i]
elif [ $min -gt $arr[$i] ];then
min=$arr[$i]
fi
let argv+=$arr[$i]
done
echo $max
exho $min
exho "ibase=10;scale=2;$argv/$#arr[@]" | bc
proc</strong>
以上是关于shell脚本程序的主要内容,如果未能解决你的问题,请参考以下文章
shell脚本,计算输入给定的数,判断最大值,最小值,总和?
如何通过读取shell脚本中的csv文件来将2列的总和添加到新列中
Linux脚本练习之script091-统计VSZ,RSS各自总和