资源描述:
《【计算机科学与技术专业】【毕业设计】Linux Shell的 研 究 与 开 发》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、(20届)本科毕业论文LinuxShell的研究与开发摘要:介绍了在Linux系统背景下对Shell相关知识的了解,编写简单的shell命令例如ls,cp,cat和rm命令等并且介绍了Shell相关的外部程序命令及管道和输入输出重定向功能,以加深对Shell这方面知识的理解,为此类程序的开发提供一定的启示性和指导性。熟悉Linux操作系统下的C语言高级编程,了解Linux操作系统的shell执行方式,熟练运用C语言对字符串进行处理。学习并掌握LinuxC语言系统库函数的用法,熟练运用某些库函数来完成设计。在Linux系统中,Shell是最常
2、使用的程序,其主要作用是侦听用户指令,启动指令所指定的进程并将结果返回给用户。Linux系统中的shell,除了可作为命令编译器之外,它也是一种不错的编程语言,是系统管理维护时的重要工具。关键词:linux;shell命令;管道;输入输出重定向Researchanddevelopment ofLinux shellAbstract:LinuxsystemsareintroducedinthecontextofknowledgeaboutShell,writeasimpleshellcommandsuchasls,cp,cat,andrmco
3、mmandsandintroducedtheShellcommandsandexternalprogramsrelatedtopipelineandinputandoutputredirection.inordertodeepenShellknowledgeandunderstandinginthisareaforthedevelopmentofsuchproceduresprovidesomeinspirationandguidance.FamiliarwiththeLinuxoperatingsystemundertheChigh-le
4、velprogramminglanguage,understandtheLinuxoperatingsystem,shellexecution,skilleduseofClanguageforstringprocessing.LearnandmastertheLinuxClibraryfunctionsystem,theusageoflanguage,skilleduseofsomelibraryfunctionstocompletethedesign.IntheLinuxsystem,Shellisthemostfrequentlyuse
5、dprograms,anditsmainroleistolistenforusercommands,starttheprocessspecifiedcommandandreturnstheresultstotheuser.Linuxsystemshell,inadditiontothecompilerasacommandotherthanthatitisalsoagoodprogramminglanguageisimportantwhenthesystemmanagementandmaintenancetools.Keywords:Linu
6、x;shellcommand;pipeline;inputandoutputredirection目录1绪论11.1课题的研究背景11.1.1shell简介11.1.2shell的发展过程11.2课题研究的目的与意义31.3课题的研究内容32linux下shell的开发方法52.1c语言简介52.2c语言的结构特点:52.3c语言的优点52.4c语言缺点62.5shell概念72.6shell语言83开发工具和开发环境介绍113.1gcc简介113.2gcc的基本用法和选项124基本功能和实现方法165主要源代码介绍175.1ls功能175
7、.2cp功能215.3who功能225.4cat功能245.5rm功能265.6全部功能集合my_cmd296总结及展望39致谢40参考文献401绪论1.1课题的研究背景1.1.1shell简介Shell是一种具备特殊功能的程序,它是介于使用者和UNIX/Linux操作系统之核心程序(kernel)间的一个接口。为了对用户屏蔽内核的复杂性,也为了保护内核以免用户误操作造成损害,在内核的周围建了一个外壳(shell)。用户向shell提出请求,shell解释并将请求传给内核。使用较广的shell有标准的Bourne shell (sh)、Ko
8、rnShell(ksh)、C shell (csh)、BourneAgainShell(bash)等。shell的另一个重要特性是它自身就是一个解释型的程序设计语言,shell程