欢迎来到淘文阁 - 分享文档赚钱的网站! | 帮助中心 好文档才是您的得力助手!
淘文阁 - 分享文档赚钱的网站
全部分类
  • 研究报告>
  • 管理文献>
  • 标准材料>
  • 技术资料>
  • 教育专区>
  • 应用文书>
  • 生活休闲>
  • 考试试题>
  • pptx模板>
  • 工商注册>
  • 期刊短文>
  • 图片设计>
  • ImageVerifierCode 换一换

    UNIX Shell编程.ppt

    • 资源ID:87328135       资源大小:305KB        全文页数:70页
    • 资源格式: PPT        下载积分:15金币
    快捷下载 游客一键下载
    会员登录下载
    微信登录下载
    三方登录下载: 微信开放平台登录   QQ登录  
    二维码
    微信扫一扫登录
    下载资源需要15金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝    微信支付   
    验证码:   换一换

     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    UNIX Shell编程.ppt

    2010 Hewlett-Packard Development Company,L.P.The information contained herein is subject to change without notice UNIX Shell-Scripting BasicsAgendalWhat is a shell?A shell script?lIntroduction to bashlRunning CommandslApplied Shell ProgrammingWhat is a shell?%What is a shell?/bin/bashWhat is a shell?#!/bin/bashWhat is a shell?INPUTshellOUTPUTERRORWhat is a shell?lAny ProgramlBut there are a few popular shellsBourne Shellsl/bin/shl/bin/bash“Bourne-Again Shell”Steve BourneOther Common ShellslC Shell(/bin/csh)lTurbo C Shell(/bin/tcsh)lKorn Shell(/bin/ksh)An aside:What do I mean by/bin?lC Shell(/bin/csh)lTurbo C Shell(/bin/tcsh)lKorn Shell(/bin/ksh)An aside:What do I mean by/bin?l/bin,/usr/bin,/usr/local/binl/sbin,/usr/sbin,/usr/local/sbinl/tmpl/devl/home/borwicjhWhat is a Shell Script?lA Text FilelWith InstructionslExecutableWhat is a Shell Script?%cat hello.sh%cat hello.shhello.sh MY_PROGRAM /tmp/myfilelcat /tmp/myfilelcat 2/tmp/myerrlcat /tmp/myinputlcat /tmp/x 2&1INPUTenvOUTPUTERROR012What is a Shell Script?How To Run%cat hello.sh hello.sh hello.sh hello.sh test.sh _TEST_exit 3_TEST_%chmod+x test.sh%./test.sh%echo$?3Logic:test%test 1-lt 10%echo$?0%test 1=10%echo$?1Logic:testltestl 1 lt 10 l “this string”=“this”l()(1 10)Logic:testl-f/etc/passwd l!f/etc/passwd l-f/etc/passwd a f/etc/shadow l-f/etc/passwd o f/etc/shadow An aside:$()for Math%echo$(1+2)3%echo$(2*3)6%echo$(1/3)0Logic:ifif somethingthen :#“elif”a contraction of“else if”:elif something-elsethen :elsethen :fiLogic:ifif$USER eq“borwicjh”then :#“elif”a contraction of“else if”:elif ls/etc/oratabthen :elsethen :fiLogic:if#see if a file existsif -e/etc/passwd then echo“/etc/passwd exists”else echo“/etc/passwd not found!”fiLogic:forfor i in 1 2 3do echo$idoneLogic:forfor i in/*do echo“Listing$i:”ls-l$i readdoneLogic:forfor i in/*do echo“Listing$i:”ls-l$i readdoneLogic:forfor i in/*do echo“Listing$i:”ls-l$i readdoneLogic:C-style forfor(expr1 ;expr2 ;expr3 )do listdoneLogic:C-style forLIMIT=10for(a=1 ;a/path/to/my/passwords _PW_FTP_USER=“sct”_PW_%echo$FTP_USER%./path/to/my/passwords%echo$FTP_USERsct%Variable Manipulation%FILEPATH=/path/to/my/output.lis%echo$FILEPATH/path/to/my/output.lis%echo$FILEPATH%.lis/path/to/my/output%echo$FILEPATH#*/path/to/my/output.lis%echo$FILEPATH#*/output.lisIt takes a long time to become a bash guru 2010 Hewlett-Packard Development Company,L.P.The information contained herein is subject to change without notice Running ProgramsReasons for Running ProgramslCheck Return Code$?lGet Job OutputOUTPUT=echo“Hello”OUTPUT=$(echo“Hello”)lSend Output SomewhereRedirection:PipesPipeslLots of Little Toolsecho“Hello”|wc-cINPUTechoOUTPUTERROR012INPUTwcOUTPUTERROR012A Pipe!Email Notification%echo“Message”|mail s“Heres your message”borwicjhwfu.eduDates%DATESTRING=date+%Y%m%d%echo$DATESTRING20060125%man dateFTP the Hard Wayftp n u server.wfu.edu outfilesqlplusJOB=“ZZZTEST”PARAMS=“ZZZTEST_PARAMS”PARAMS_USER=“BORWICJH”sqlplus$BANNER_USER/$BANNER_PW test.sh _TEST_echo“Your name is$1$2”_TEST_%chmod+x test.sh%./test.sh John Borwick ignore-thisYour name is John BorwickScheduling Jobs%crontab-l0 0*daily-midnight-job.sh0*hourly-job.sh*every-minute.sh0 1*0 1AM-on-sunday.sh%EDITOR=vi crontab e%man 5 crontabOther Questions?lShells and Shell ScriptslbashlRunning Commandslbash and Banner in Practice

    注意事项

    本文(UNIX Shell编程.ppt)为本站会员(asd****56)主动上传,淘文阁 - 分享文档赚钱的网站仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知淘文阁 - 分享文档赚钱的网站(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    关于淘文阁 - 版权申诉 - 用户使用规则 - 积分规则 - 联系我们

    本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

    工信部备案号:黑ICP备15003705号 © 2020-2023 www.taowenge.com 淘文阁 

    收起
    展开