版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、精选优质文档-倾情为你奉上精选优质文档-倾情为你奉上专心-专注-专业专心-专注-专业精选优质文档-倾情为你奉上专心-专注-专业第二次实验内容一、实验名称:Linux下shell编程二、实验类型:设计三、实验目的:熟悉Linux的shell几种变量使用熟练掌握Linux的shell编程几种结构熟练掌握Linux下shell脚本的编写四、实验准备参考教材,课件第7章内容及笔记。要求实验内容全部写到实验报告上(B5纸)。五、实验内容练习使用shell四种变量,参考课件例题。用户自定义变量,环境变量,位置变量,特殊变量这四种变量类型的使用,书中有例题。调试课件所有shell脚本的例题。编写如下脚本:编
2、写脚本if1,测试其功能。 echo -n word 1: read word1echo -n word 2: read word2if test $word1 = $word2 then echo Matchfiecho End of program.编写脚本chkargs,测试其功能if test $# -eq 0 then echo You must supply at least one argument. exit 1fiecho Program running.编写脚本if2,测试其功能if test $# -eq 0 then echo You must supply at le
3、ast one argument. exit 1fiif test -f $1 then echo $1 is a regular file in the working directory else echo $1 is NOT a regular file in the working directoryfi编写脚本if3,测试其功能echo -n word 1: read word1echo -n word 2: read word2echo -n word 3: read word3if $word1 = $word2 -a $word2 = $word3 then echo Matc
4、h: words 1, 2, & 3 elif $word1 = $word2 then echo Match: words 1 & 2 elif $word1 = $word3 then echo Match: words 1 & 3 elif $word2 = $word3 then echo Match: words 2 & 3 else echo No matchfi编写smartzip 脚本,测试其功能#!/bin/bashftype=file $1case $ftype in$1: Zip archive*)unzip $1 ;$1: gzip compressed*)gunzip
5、 $1 ;$1: bzip2 compressed*)bunzip2 $1 ;*) echo File $1 can not be uncompressed with smartzip;esac编写脚本dirfiles,测试其功能。for i in *do if -d $i then echo $i fidone编写脚本until1,测试其功能。用while改写之。secretname=jennyname=nonameecho Try to guess the secret name!echountil $name = $secretname /while改写位 while “$name” !
6、= “$secretname” ,其他地方不变do echo -n Your guess: read namedoneecho Very good.编写脚本brk,测试其功能。for index in 1 2 3 4 5 6 7 8 9 10 do if $index -le 3 ; then echo continue continue fi# echo $index# if $index -ge 8 ; then echo break break fidone编写脚本command_menu,测试其功能。echo -e n COMMAND MENUnecho a. Current date
7、 and timeecho b. Users currently logged inecho c. Name of the working directoryecho -e d. Contents of the working directorynecho -n Enter a, b, c, or d: read answerechocase $answer in a) date; b) who; c) pwd; d) ls; *) echo There is no selection: $answer;esac编写脚本demo_shift,测试其功能。echo arg1= $1 arg2=
8、$2 arg3= $3shiftecho arg1= $1 arg2= $2 arg3= $3shiftecho arg1= $1 arg2= $2 arg3= $3shiftecho arg1= $1 arg2= $2 arg3= $3shift编写shell脚本sum1,求命令行上整数和。即:$./sum1 5 12 4 6,给出和的结果。sum=0for i in $*do let sum=sum+idoneecho “和是:$sum”编写脚本filetest,判断当前目录下所有文件类型,如果是普通文件,显示文件内容;如果是目录文件,显示目录列表;如果是大小为0的文件,删除它;否则,显示
9、“sorry, The file is not recognized!”for i in *do if -d $i then ls $ielif -f $i then if -s $i then cat $ielse rm $i fielse echo n “sorry,the file cant be recognized”fidone编写shell脚本user,判断当前登录用户是否为“学号命名”的用户,是,提示:hello “学号用户”,welcome!,否,提示“you should login using your username! ”Read nameIf $USER = $nam
10、e Then echo “hello $USER”else echo “you should login using your username!”fi编写shell脚本menu,使用shell编写一个菜单,分别实现列出以下内容:(1)显示目录内容、(2)切换目录、(3)创建文件、(4)编辑文件、(5)删除文件的功能。在此例中将用到循环语句、分支语句和输入输出语句。Echo “a.display the directory”Echo “b.change the directory”Echo “c.create a file”Echo “d.delete the file”Echo “if yo
11、u input nothing,you will exit”Read itemUntil -z $item Do Case $item in Echo “input the directory”Read direLs $dire;Echo “input the directory you want go into”Read direCd $dire;Echo “input the file you want to create”Read fTouch $f;Echo “input the file you want to delete”Read fRm $f;EsacEcho “a.displ
12、ay the directory”Echo “b.change the directory”Echo “c.create a file”Echo “d.delete the file”Echo “if you input nothing,you will exit”Read itemdone编写脚本,实现一个简单计算器。+ addition- subtractionx multiplication/ division脚本执行形式:$ ./cal.sh 21 / 3Let l=$1 /最简单的一种形式,而且还特别高效Echo $1;第二种方式:Re=”+ - * /”For var in $reDo If $var = “*” ThenNum2=$1#* Num1=$1%* Else Num2=$1#*$var Num1=$1
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2026年深圳市南山人民医院医护人员招聘考试备考试题及答案详解
- 2026年解放军第180医院医护人员招聘笔试参考题库及答案详解
- 2026年定制化跨境物流协议书
- 2026年度外卖平台运营销售协议
- 八年级数学上册(人教版)全等三角形及其性质教案
- 2026年邹平市中医院医护人员招聘考试参考试题及答案详解
- 2026年荆州市中心医院医护人员招聘笔试备考题库及答案详解
- 《核心素养导向的小学三年级上学期数学(人教版)专项教学优化方案》
- 北师大版初中数学八年级上册第一章第四节:勾股定理在立体图形与最短路径问题中的深度应用教案
- 本科临床医学专业《临床医学导论》整合课程教学设计
- 2026年自然资源部信息中心招聘在职人员易考易错模拟试题(共500题)试卷后附参考答案
- 2026年文化传媒居间合同协议条款详解
- 2025-2026苏教版三年级数学下册第五单元长方形和正方形综合测试卷(含答案)
- 雨课堂学堂在线学堂云《现代农业创新与乡村振兴战略(扬州)》单元测试考核答案
- AutoCAD 2016基础与应用案例教程
- 北京市东城区东直门中学2026届生物高一下期末教学质量检测试题含解析
- 《老年病科临床诊疗指南(2025版)》
- 人民调解枫桥经验培训课件
- GB/T 21866-2025涂膜抗病毒活性和抗菌性测定法
- 餐饮提升销售方案
- 2026年法律常识题库200道带答案(新)
评论
0/150
提交评论