欢迎来到天天文库
浏览记录
ID:56825854
大小:63.00 KB
页数:8页
时间:2020-07-15
《LINUX-Shell编程实验报告.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、《LINUX管理与应用》课程实验报告≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡实验内容和目的实验目的:理解Shell程序的设计方法;熟悉Shell程序编辑、运行、调试方法与过程。实验内容:(1)Shell简单编程用户名回显程序;if-then、if-then-else语句使用;for语句、while语句使用(2)较复杂的考勤模拟shell程序设计实验环境微机、WINDOWSXP、QUICKLINUX、VMWARE虚拟机软件实验重点及难点实验重点:SHELL编辑、运行过程;SHELL变量的使用,分支语句的设计,循
2、环语句的设计实验难点:SHELL语句的使用方法实验过程(实验过程、实验结果及实验分析)一、实验过程1.编写一个简单的回显用户名的shell程序2.使用if-then语句创建简单的shell程序3.使用if-then-else语句创建一个根据输入的分数判断是否及格的shell程序4.使用for语句创建简单的shell程序5.使用while语句创建一个计算1-5的平方的shell程序6.用shell设计一个模拟考勤程序二、实验结果1.编写一个简单的回显用户名的shell程序#vidat#!/bin/bash#filename:datecho"Mr.
3、$USER,Todayis:"echo`date`echoWishyoualuckyday!#chmod+xdat#./dat2.使用if-then语句创建简单的shell程序#vibbbb#!/bin/bash#filename:bbbbecho-n"Doyouwanttocontinue:YorN"readANSWERif[$ANSWER=N-o$ANSWER=n]thenecho"youranswerisquit!"fi#chmod+xbbbb#./bbbb3.使用if-then-else语句创建一个根据输入的分数判断是否及格的shell
4、程序#viak#!/bin/bash#filename:akecho-n"pleaseinputascore:"readSCOREecho"YouinputScoreis$SCORE"if[$SCORE-ge60];thenecho-n"Congratulation!YouPasstheexamination."elseecho-n"Sorry!YouFailtheexamination!"fiecho-n"pressanykeytocontinue!"read$GOOUT#chmod+xak#./ak4.使用for语句创建简单的shell程序
5、#vimm#!/bin/bash#filename:mmforabin1234doecho$abdone#chmod+xmm#./mm5.使用while语句创建一个计算1-5的平方的shell程序#vizx#!/bin/bash#filename:zxint=1while[$int-le5]dosq=`expr$int*$int`echo$sqint=`expr$int+1`doneecho"Jobcompleted"#chmod+xzx#./zx6.用shell设计一个模拟考勤程序,实现如下功能选择界面:1:上班签到2:下班签出3:缺勤信息
6、查阅#vitestshell#!/bin/bash#filename:shelltestexsig=0whiletrue;doecho""echo"----欢迎使用本系统----"echo"1.上班签到"echo"2.下班签出"echo"3.考勤信息查询"echo"4.退出系统"echo"----------------------"echo""echo"请输入你的选项:"readchoicecase$choicein1)echo"请输入你的名字:"readnameecho"请输入你的密码:"readpasswordiftest-r/home/
7、user/userinfo.datthenwhilereadfnamefpassworddoecho"$fname"echo"$fpassword"iftest"$fname"="$name"thenbreakfidone
8、hour=`date+%H`iftest"$hour"-gt8thenecho"你迟到了!"echo"$name上班迟到---日期:`date`">>
此文档下载收益归作者所有