- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话: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
您可能关注的文档
最近下载
- 训练基地信息化系统维保项目方案投标文件(技术方案).doc
- 人教版道德与法治三年级上册第5课《 走近科学家》第2课时 他们离我们并不遥远 教学课件.pptx VIP
- 黄浦区卢湾中学能源审计报告.pdf VIP
- HDJH30-120J型架桥机说明书.doc
- 5.2用圆设计图案(表格式)教学设计 人教版六年级上册数学.docx VIP
- 航空集装器知识 .pdf VIP
- SHT-3012-2011 石油化工金属管道布置设计规范.pdf VIP
- AI赋能教育的思考与应用 教师培训课件.pptx VIP
- sfz jd2015数据库数据真实性鉴定.pdf VIP
- 公司中层领导人员任职回避和公务回避管理实施细则.docx VIP
文档评论(0)