欢迎来到天天文库
浏览记录
ID:37710955
大小:35.50 KB
页数:4页
时间:2019-05-29
《Linux-Shell-程序设计实验》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、Linuxshell程序设计实验指南请在vi中逐一编辑并执行以下10个shell脚本程序,然后结合所学知识和程序的输出分析各程序中各语句的含义:1.编写一个简单的回显用户名的shell程序。#!/bin/bash#filename:dateecho"Mr.$USER,Todayis:"echo'date'echoWhishyoualuckyday!2.使用if-then语句创建简单的shell程序。#!/bin/bash#filename:bbbbecho-n"Doyouwanttocontinue:YorN"readANSWERif[$ANSWER=N-o$ANSWER=n]then
2、exitfi3.使用if-then-else语句创建一个根据输入的分数判断是否及格的shell程序。#!/bin/bash#filename:akecho-n"pleaseinputascore:"readSCOREecho"YouinputScoreis$SCORE"if[$SCORE-ge60];thenecho-n"Congratulation!YouPasstheexamination."elseecho-n"Sorry!YouFailtheexamination!"fiecho-n"pressanykeytocontinue!"read$GOOUT4.使用case语句创建一个
3、菜单选择的shell程序。#!/bin/bash#filename:za#Displayamenuecho_echo"1Restore"echo"2Backup"echo"3Unload"echo#Readandexcutetheuser'sselectionecho-n"EnterChoice:"readCHOICEcase"$CHOICE"in1)echo"Restore";;2)echo"Backup";;3)echo"Unload";;*)echo"Sorry$CHOICEisnotavalidchoiceexit1esac5.使用for语句创建简单的shell程序。#!/bi
4、n/bash#filename:mmforabin1234doecho$abdone6.使用for语句创建求命令行上所有整数之和的shell程序。#!/bin/bash#filename:qqqsum=0forINTin$*dosum='expr$sum+$INT'doneecho$sum7.使用while语句创建一个计算1-5的平方的shell程序。#!/bin/bash#filename:zxint=1while[$int-le5]dosq='expr$int*$int'echo$sqint='expr$int+1'doneecho"Jobcompleted"8.使用while语
5、句创建一个根据输入的数值求累加和(1+2+3+4+…+n)的shell程序。#!/bin/bash#filename:sumecho-n"PleaseInputNumber:"readNUMnumber=0sum=0while[$number-le$NUM]doechonumberecho"$number"number='expr$number+1'echosumecho"$sum"sum='expr$sum+$number'doneecho9.使用until语句创建一个计算1-5的平方的shell程序。#!/bin/bash#filename:xxint=1until[$int-gt
6、5]dosq='expr$int*$int'echo$sqint='expr$int+1'doneecho"Jobcompleted"10.使用until语句创建一个输入exit退出的shell程序。#!/bin/bash#filename:hkecho"Thisexampleisfortestuntil....do"echo"Ifyouinput[exit]thenquitthesystem"echo-n"pleaseinput:"readEXITuntil[$EXIT="exit"]doreadEXITdoneecho"OK!"本章项目设计1.编写一个shell脚本,输入1–10
7、之间的一个数,并判断它是否小于5。2.编写一个shell脚本,随机输入5个数,打印出了值为3的所有数。
此文档下载收益归作者所有