- 1、本文档共121页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
[]NOVELL SUSE NCLP 3103课程8
Course 3103SUSE Linux Enterprise Server 11 Advanced AdministrationModule 8: Create Shell Scripts
Novell Training Services
Module 8: Create Shell Scripts
Objectives:
Bash Basics
Use Basic Script Elements
Understand Variables and Command Substitution
Use Control Structures
Use Arithmetic Operators
Read User Input
Use Arrays
Finalize the Course Project
Use Advanced Scripting Techniques
Learn about Useful Commands in Shell Scripts
Objective 1: Bash Basics
Bash Basics
Before diving into shell scripting, let’s review some of the features of Bash:
Bash Command Line
Bash Variables
Return Values
Bash Command Line
A command entered on the command line consists of the command and optional arguments:
Messages that indicate normal or expected behavior are written to the file descriptor 1, Standard Out (stdout) which, in interactive use of Bash, is connected to the terminal where you entered the command:
geeko@da10:~ cp -a Photos /tmp
geeko@da10:~
geeko@da10:~ cp -av Photos /tmp
Photos/vacation/beach.jpg - /tmp/Photos/vacation/beach.jpg
...
Bash Command Line (continued)
The error message is written to the file descriptor 2, Standard Error (stderr) which, in interactive use is also connected to the terminal where you entered the command:
To redirect stdout to a file, you use the operator (or to append to a file):
geeko@da10:~ cp -av Fotos /tmp
cp: cannot stat `Fotos: No such file or directory
geeko@da10:~
geeko@da10:~ cp -av Photos /tmp output.txt
geeko@da10:~ cat output.txt
Photos/vacation/beach.jpg - /tmp/Photos/vacation/beach.jpg
...
Bash Command Line (continued)
To redirect stderr, you use the 2 operator:
You can also redirect stdout and stderr to separate files in one command line:
geeko@da10:~ cp -av Fotos /tmp 2 error.txt
geeko@da10:~ cat error.txt
cp: cannot stat ’Fotos’: No such file or directory
geeko@da10:~
geeko@da10:~ cp -av Fotos Photos /tmp output.txt 2 error.txt
geeko@da10:~
Bash Command Line (continued)
It is also possible to redirect stdout and stderr to on
您可能关注的文档
- []Factory Method模式.ppt
- []goldwave教程.pdf
- []IPSec原理与实践.doc
- []ISO9001知识培训.ppt
- []Intel-AMD直面竞争 146款CPU超级横评.doc
- []java 课件 第三章.ppt
- []IR课件20112.ppt
- []L4 血管2.ppt
- []Lecture 8 :总供给和总需求模型.ppt
- []LED产业发展趋势-简体.pdf
- 区委书记、市国资委党委领导班子2025年组织生活会对照“四个带头”含反面典型案例举一反三剖析方面检查材料【两篇文】.docx
- 局党组书记、市国资委党委领导班子2025年组织生活会对照“四个带头”含反面典型案例举一反三剖析方面个人检查材料2篇文.docx
- 市交通运输局局长2025年专题生活会对照“四个带头”含落实意识形态工作责任制方面个人对照检查发言提纲与检察院领导班子“四个带头”检查材料【2篇文】.docx
- 市投资促进局党支部书记2025年组织生活会对照“四个带头”个人对照检查发言材料与党组书记“四个带头”个人对照检查材料(内蒙古地区四个对照,反面典型案例检视剖析)【2篇文】.docx
- 市教育局党委副书记、市国资委党委领导班子2025年“四个带头”个人对照检查发言材料(上年度整改+个人事项+典型事例剖析)2篇文.docx
- 2025年专题生活会“四个带头”方面对照检视材料(问题+原因+措施+意识形态)与纪检委员专题生活会“四个带头”方面个人对照检查材料【2篇文】.docx
- 检察院领导班子2025年专题生活会对照“四个带头”检查材料与县司法局专题生活会党组书记个人对照“四个带头”对照检查材料(含反面典型案例全面剖析)2篇文.docx
- 市机关事务局党支部书记、局党组书记2025年组织生活会对照“四个带头”含反面典型案例举一反三剖析方面个人发言材料、检查材料【2篇文】.docx
- 2025年领导干部专题生活会“四个带头”对照检查材料与市审计局领导班子专题生活会“四个带头”含反面典型案例剖析对照检查材料2篇文.docx
- 2025年县司法局专题民主生活会班子围绕“4个带头”对照检查材料与反面典型案例回顾与剖析对照检查发言材料2篇文.docx
文档评论(0)