shell脚本实例之Charpter8-14

简介:

要求:使用while循环编写脚本,使其完成以下功能:

1.提示用户输入两个整数:firstNum和secondNum(firstNum的值一定要小于secondNum)

2.输出所有介于这两数之间的奇数

3.输出所有介于这两数目之间偶数之和


先看一下如何用for循环实现:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/bash
#chapter_8-14
 
echo  "Please input two integer numbers(the first must be smaller than the second):"
 
read  firstNum secondNum
 
#定义函数fun0,判断输入的两个数的大小
fun0()
{
    while  [ $1 -lt $2 ]
     do
        echo  "Your input:"  "$firstNum " "$secondNum"
        break
    done
}
 
fun0 $firstNum $secondNum
 
#定义一个数组,将两个数之间的所有数写入数组
declare  -a arr1
i=firstNum
arr1=($(
for  ((i=firstNum;i<=secondNum;i++))
do
    echo  -n  "$i "
done
))
 
length=${ #arr1[@]}
sum_even=0
 
if  [[  "arr1[0]%2"  - eq  0 ]]
then
     for  ((j=0;j<=length;j=j+2))
     do
       let    sum_even+=arr1[j]
       echo  -n  "${arr1[j+1]} "
     done
     echo  "偶数之和为:"  $sum_even
else
     for  ((k=0;k<=length;k=k+2))
     do
        let   sum_even+=arr1[k+1]
        echo  -n  "${arr1[k]} "
     done
     echo  "偶数之和为:"  "$sum_even "
fi

脚本执行效果:

1
2
3
4
5
6
7
8
9
10
[root@localhost charpter8] # sh 8-14
Please input two integer numbers(the first must be smaller than the second):
3 29
Your input: 3 29
3 5 7 9 11 13 15 17 19 21 23 25 27 29 偶数之和为: 208
[root@localhost charpter8] # sh 8-14
Please input two integer numbers(the first must be smaller than the second):
8 29
Your input: 8 29
9 11 13 15 17 19 21 23 25 27 29  偶数之和为: 198


while 循环实现:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/bash
 
echo  "Pleas input two integer number(the first num must be smaller than the second one):"
read  firstNum secondNum
 
fun0()
{
   while  [ $1 -lt $2 ]
   do
       echo  "Your input is:"  "$firstNum "  "$secondNum"
       break
   done
}
 
fun0 $firstNum $secondNum
 
declare  -a arr1
let  i=firstNum
arr1=(
       $(
         while  ((i<=secondNum))
         do
                 echo  "$i "
                 let  i++
         done
       )
)
 
length=${ #arr1[@]}
j=0
k=0
sum_even=0
if  [[  "arr1[0]%2"  - eq  0 ]]
then
         while  ((j<length))
         do
                 echo  -n  "${arr1[j+1]} "
                 let  sum_even+=arr1[j]
                 let  j=j+2
         done
         echo  "偶数之和:$sum_even"
else
         while  ((k<length))
         do
                 echo  -n  "${arr1[k]} "
                 let  sum_even+=arr1[k+1]
                 let  k=k+2
         done
         echo   "偶数之和:$sum_even"
fi


脚本执行效果:

1
2
3
4
5
6
7
8
9
10
root@localhost charpter8] # sh 8-14-1
Pleas input two integer number(the first num must be smaller than the second one):
31 38
Your input is: 31  38
31 33 35 37 偶数之和:140
[root@localhost charpter8] # sh 8-14-1
Pleas input two integer number(the first num must be smaller than the second one):
30 39
Your input is: 30  39
31 33 35 37 39 偶数之和:170


两种循环实现发现大致相似.



本文转自 marbury 51CTO博客,原文链接:http://blog.51cto.com/magic3/1429193
相关文章
|
3月前
|
Shell
一个用于添加/删除定时任务的shell脚本
一个用于添加/删除定时任务的shell脚本
135 1
|
2月前
|
Shell Linux 测试技术
6种方法打造出色的Shell脚本
6种方法打造出色的Shell脚本
83 2
6种方法打造出色的Shell脚本
|
2月前
|
XML JSON 监控
Shell脚本要点和难点以及具体应用和优缺点介绍
Shell脚本在系统管理和自动化任务中扮演着重要角色。尽管存在调试困难、可读性差等问题,但其简洁高效、易于学习和强大的功能使其在许多场景中不可或缺。通过掌握Shell脚本的基本语法、常用命令和函数,并了解其优缺点,开发者可以编写出高效的脚本来完成各种任务,提高工作效率。希望本文能为您在Shell脚本编写和应用中提供有价值的参考和指导。
99 1
|
2月前
|
Ubuntu Shell 开发工具
ubuntu/debian shell 脚本自动配置 gitea git 仓库
这是一个自动配置 Gitea Git 仓库的 Shell 脚本,支持 Ubuntu 20+ 和 Debian 12+ 系统。脚本会创建必要的目录、下载并安装 Gitea,创建 Gitea 用户和服务,确保 Gitea 在系统启动时自动运行。用户可以选择从官方或小绿叶技术博客下载安装包。
97 2
|
3月前
|
监控 网络协议 Shell
ip和ip网段攻击拦截系统-绿叶结界防火墙系统shell脚本
这是一个名为“小绿叶技术博客扫段攻击拦截系统”的Bash脚本,用于监控和拦截TCP攻击。通过抓取网络数据包监控可疑IP,并利用iptables和firewalld防火墙规则对这些IP进行拦截。同时,该系统能够查询数据库中的白名单,确保合法IP不受影响。此外,它还具备日志记录功能,以便于后续分析和审计。
74 6
|
2月前
|
运维 监控 Shell
深入理解Linux系统下的Shell脚本编程
【10月更文挑战第24天】本文将深入浅出地介绍Linux系统中Shell脚本的基础知识和实用技巧,帮助读者从零开始学习编写Shell脚本。通过本文的学习,你将能够掌握Shell脚本的基本语法、变量使用、流程控制以及函数定义等核心概念,并学会如何将这些知识应用于实际问题解决中。文章还将展示几个实用的Shell脚本例子,以加深对知识点的理解和应用。无论你是运维人员还是软件开发者,这篇文章都将为你提供强大的Linux自动化工具。
|
3月前
|
监控 Unix Shell
shell脚本编程学习
【10月更文挑战第1天】shell脚本编程
95 12
|
3月前
|
Shell 应用服务中间件 网络安全
|
3月前
|
存储 运维 监控
自动化运维:使用Shell脚本简化日常任务
【9月更文挑战第35天】在IT运维的日常工作中,重复性的任务往往消耗大量的时间。本文将介绍如何通过编写简单的Shell脚本来自动化这些日常任务,从而提升效率。我们将一起探索Shell脚本的基础语法,并通过实际案例展示如何应用这些知识来创建有用的自动化工具。无论你是新手还是有一定经验的运维人员,这篇文章都会为你提供新的视角和技巧,让你的工作更加轻松。
115 2
|
4月前
|
Shell
shell脚本变量 $name ${name}啥区别
shell脚本变量 $name ${name}啥区别