您好,欢迎访问三七文档
当前位置:首页 > 商业/管理/HR > 咨询培训 > LINUX-Shell编程实验报告
《LINUX管理与应用》课程实验报告≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡实验内容和目的实验目的:理解Shell程序的设计方法;熟悉Shell程序编辑、运行、调试方法与过程。实验内容:(1)Shell简单编程用户名回显程序;if-then、if-then-else语句使用;for语句、while语句使用(2)较复杂的考勤模拟shell程序设计实验环境微机、WINDOWSXP、QUICKLINUX、VMWARE虚拟机软件实验重点及难点实验重点:SHELL编辑、运行过程;SHELL变量的使用,分支语句的设计,循环语句的设计实验难点: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:datechoMr.$USER,Todayis:echo`date`echoWishyoualuckyday!#chmod+xdat#./dat2.使用if-then语句创建简单的shell程序#vibbbb#!/bin/bash#filename:bbbbecho-nDoyouwanttocontinue:YorNreadANSWERif[$ANSWER=N-o$ANSWER=n]thenechoyouranswerisquit!fi#chmod+xbbbb#./bbbb3.使用if-then-else语句创建一个根据输入的分数判断是否及格的shell程序#viak#!/bin/bash#filename:akecho-npleaseinputascore:readSCOREechoYouinputScoreis$SCOREif[$SCORE-ge60];thenecho-nCongratulation!YouPasstheexamination.elseecho-nSorry!YouFailtheexamination!fiecho-npressanykeytocontinue!read$GOOUT#chmod+xak#./ak4.使用for语句创建简单的shell程序#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`doneechoJobcompleted#chmod+xzx#./zx6.用shell设计一个模拟考勤程序,实现如下功能选择界面:1:上班签到2:下班签出3:缺勤信息查阅#vitestshell#!/bin/bash#filename:shelltestexsig=0whiletrue;doechoecho----欢迎使用本系统----echo1.上班签到echo2.下班签出echo3.考勤信息查询echo4.退出系统echo----------------------echoecho请输入你的选项:readchoicecase$choicein1)echo请输入你的名字:readnameecho请输入你的密码:readpasswordiftest-r/home/user/userinfo.datthenwhilereadfnamefpassworddoecho$fnameecho$fpasswordiftest$fname=$namethenbreakfidone/home/user/userinfo.datelseechoSystemError:userinfo.datdoesnotexist!fiiftest$fname!=$namethenecho不存在该用户!eliftest$fpassword!=$passwordthenecho密码不正确!elsehour=`date+%H`iftest$hour-gt8thenecho你迟到了!echo$name上班迟到---日期:`date`/home/user/check.datelseecho早上好,$name!fifi;;2)echo请输入你的名字:readnameecho请输入你的密码:readpasswordiftest-r/home/user/userinfo.datthenwhilereadfnamefpassworddoiftest$fname=$namethenbreakfidone/home/user/userinfo.datelseechoSystemError:userinfo.datdoesnotexist!fiiftest$fname!=$namethenecho不存在该用户!eliftest$fpassword!=$passwordthenecho密码不正确!elsehour=`date+%H`iftest$hour-lt18thenecho你早退了!echo$name下班早退----日期:`date`/home/user/check.datelseecho再见,$name!fifi;;3)echo请输入你的名字:readnameecho请输入你的密码:readpasswordiftest-r/home/user/userinfo.datthenwhilereadfnamefpassworddoiftest$fname=$namethenbreakfidone/home/user/userinfo.datelseechoSystemError:userinfo.datdoesnotexist!fiiftest$fname!=$namethenecho不存在该用户!eliftest$fpassword!=$passwordthenecho密码不正确!elseecho你的记录:echo---------cat-b/home/user/check.dat|grep$nameecho---------fi;;4)echo欢迎你的使用,再见!exsig=1;;*)echo请输入合法的选项!;;esaciftest$exsig=1thenbreakfidone七.试验运行结果:#chmod+xtestshell#./testshell三、实验分析通过这次实验,我懂得了定义SHELL程序设计中的变量,掌握了SHELL程序中LINUX基本命令的使用,理解了Shell程序的设计方法,并且熟悉了Shell程序编辑、运行、调试方法与过程。这为我日后继续深入学习Linux课程打下基础。
本文标题:LINUX-Shell编程实验报告
链接地址:https://www.777doc.com/doc-5710363 .html