- 1、本文档共9页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
unix-脚本编写练习
写个从用户接受文件名的shell脚本。如果文件是普通文件,则显示以下信息: ————is an ordinary file-display? 如果答案是‘y’,而且文件是有可读权限的,显示文件,不 然,则显示如下信息并退出: sorry _______has no read permission. 如果参数是个目录,在用户确认了权限之后显示那个目录 里的文件名。 如果参数不是普通或者目录文件,显示出错信息并退出。 习题1 参考答案 Echo “enter a file or directory name:” Read fname If test -f ${fname} Then echo “${fname}is an ordinary file-diaplay?” Read ans If test $ans = ‘y’ Then if test –r ${fname} then cat ${fname} else echo “sorry,${fname} has no read permission” fi Fi Elif test -d ${fname} Then echo “${fname} is a directory file – display?” Read ans If test $ans = ‘y’ Then if test –r ${fname} then ls -l ${fname} else echo “sorry,${fname} has no read permission” fi Fi Else echo “${fname} is neither an ordinary file nor a directory” Fi 习题2 写个从用户接受一个文件名和一个目录名的shell脚本,脚本要检查文件和目录是否存在。如果存在,文件将被拷贝到指定的目录,如果文件或者目录不存在,显示错误信息。 写出shell脚本接受两个参数,开始时间和结束时间。然后显示所有在这段时间里登录的用户名。 习题 9 2:::::参考答案 Echo “enter file name” Read fn Echo “enter directory name” Read dn If test –f ${fn} Then if test –d ${dn} then cp ${fn} ${dn}/${fn} echo “file copies” else echo “directory does not exist ” fi Else echo “file does not exist” fi 9:::::参考答案 If test –z “$2” Then echo “you need to supply the start time and time as parameters” echo “USAGE: $0start_timeEnd_Time” echo “the time should be in hh:mm format –24 hour day” exit fi hour_after=`echo $1 | cut –d ‘:’ –f1` min_after=`echo $1 | cut –d ‘:’ –f2` total_after=`expr $hour_after \* 60` total_after=`expr $total_after + $min_after` hour_before=`echo $2 | cut –d ‘:’ –f1` min_before=`echo $2 | cut –d ‘:’ –f2` total_before=`expr $hour_after \* 60` total_before=`expr $total_before + $min_before` Echo “the following users have logged in between $1 and $2” Echo “-----------------------------------------------------------” For user in `who | tr –s ‘ ‘ | cut –d ‘ ‘` -f1,5 | tr ‘ ‘ ‘:’ ` Do Hour=`echo $user | cut –d ‘:’ –f2`
您可能关注的文档
- unit3 travel Journal vocabulary词汇精讲.ppt
- Unit3-could-you-please-clean-your-room3a-3c阅读.ppt
- Unit3Could_you_please_clean_your_room?Section_B_2a-selfcheck.ppt
- Unit4 Where’s my schoolbag Section B(2a-2c)课件.ppt
- Unit4.单元练习.ppt
- Unit4-Where-is-my-car?人教版三年级PEP英语下册第四单元·单元复习、知识梳理、强化练习.ppt
- unit5 text1吕倩 黄小倩 杨前路.ppt
- unit6 Will_people_have_robots赛课课件.ppt
- Unit6WhatDidYouDoLastWeekend教案.doc
- Unit5 There is a big bed(pep五年级上).ppt
文档评论(0)