資源描述:
《linux操作系統(tǒng)實(shí)驗(yàn)報(bào)告_shell簡(jiǎn)單編程》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫(kù)。
1、操作系統(tǒng)實(shí)驗(yàn)報(bào)告院系:機(jī)電與信息工程學(xué)院實(shí)驗(yàn)日期:2012年xx月x日姓名xxx學(xué)號(hào)xxxxxxxxxxxx專業(yè)計(jì)算機(jī)年級(jí)xx級(jí)同組者(姓名、學(xué)號(hào))無(wú)實(shí)驗(yàn)題目:一、實(shí)驗(yàn)?zāi)康模òǎ簩?shí)驗(yàn)內(nèi)容,實(shí)驗(yàn)原理,實(shí)驗(yàn)?zāi)繕?biāo))?1)利用Shell編程,實(shí)現(xiàn)時(shí)間密碼的驗(yàn)證?2)編寫一個(gè)小程序,計(jì)算用戶期望時(shí)間與系統(tǒng)時(shí)間的差值?3)編寫一個(gè)Shell程序,使得程序在系統(tǒng)時(shí)間分鐘值為5的倍數(shù)的時(shí),自動(dòng)備份此目錄下的.png文件到backup中(選做)二、實(shí)驗(yàn)設(shè)計(jì)(包括:設(shè)計(jì)思路,數(shù)據(jù)結(jié)構(gòu),程序流程圖,關(guān)鍵代碼說(shuō)明)使用linux虛擬機(jī)完成實(shí)驗(yàn)要求。三、實(shí)驗(yàn)結(jié)果(包括:運(yùn)行結(jié)果,結(jié)果分析)?1)利用Shell編程,
2、實(shí)現(xiàn)時(shí)間密碼的驗(yàn)證附:源代碼如下#!/bin/bash#Program:Usercantestthetimepassword.用戶可以驗(yàn)證時(shí)間密碼#History:2012/11/03FirstreleasePATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/binexportPATHDate=`date+%Y%m%d%H%M`read-p"Pleaseinputthepassword:"passwordwhile["$password"!="$Date"]doread-p"Youhave
3、thewrongpassword,pleaseinputtherightone:"passworddoneif["$password"=="$Date"];thenecho"Congratulations!Youhavewonthethistest!"exit0fi?2)編寫一個(gè)小程序,計(jì)算用戶期望時(shí)間與系統(tǒng)時(shí)間的差值附:源代碼#!/bin/bash#Program:Usercangetthedaystohisexpecteddate.#得到距離用戶期望日期的天數(shù)或者已過(guò)天數(shù)。#History:2012/11/04FirstreleasePATH=/bin:/sbin:/usr/bin:/u
4、sr/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/binexportPATHTime=`date+%Y%m%d`echo"Nowisthetime$Time"read-p"Enterthedate:"date1date_test='echo$date1
5、grep'[0-9]{8}''if["$date_test"==""];thenecho"Wrongformofdate!Pleasetryagain:"date1exit1fidate_now=`date+%s`date_exp=`date--date="$date1"+%s`date
6、_dif_s=$(($date_exp-$date_now))date_dif=$(($date_dif_s/60/60/24))if["$date_dif"-gt"0"];thenecho"$(($date_dif+1))day(s)latertoyourexpecteddate."elif["$date_dif"-lt"0"];thenecho"Yourdaysis$((-1*$date_dif))daysbefore."elseecho"Yourexpecteddayistoday."fi?3)編寫一個(gè)Shell程序,使得程序在系統(tǒng)時(shí)間分鐘值為5的倍數(shù)的時(shí),自動(dòng)備份此目錄下的.png文
7、件到backup中(選做)源代碼:#!/bin/bash#Program:Usercanbackupthepngfilesevery5minutes.#History:2012/11/04FirstreleasePATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/binexportPATHecho"Thisprogramhelpsyoutobackupthepngfilesevery5minutes."backdir="./backup"minute=`date+%M`next=$(($m
8、inute%5))if[$next-eq"0"];thenecho"backing......"cp*.png$backdirecho"finished"elseecho"Can'tbackupthisminute!"fi四、實(shí)驗(yàn)總結(jié)(包括:實(shí)驗(yàn)效果分析,心得體會(huì),遺留問(wèn)題)在用sh的時(shí)候,出現(xiàn)了點(diǎn)小問(wèn)題,最后通過(guò)百度,成功解決了問(wèn)題。本次實(shí)驗(yàn)學(xué)到了很多知識(shí)。教師評(píng)語(yǔ)成績(jī):教師簽名:年月日注:此表各欄可延伸。