- 1、本文档共22页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
CMD第五章(国外英语资料)
CMD第五章(国外英语资料)
The fifth chapter, set command detailed explanation
In the last paste, a brief introduction to the SET set the role of custom variables, and now specifically to talk about other functions of set
First, set the custom variables with the set command
Display, set, or delete cmd.exe environment variables.
SET [variable]=[string] variable specifies the environment variable name.
String specifies a series of strings to assign to variables.
To display the current environment variable, type the SET with no arguments.
The SET command does not allow a variable name to contain an equal sign.
Note: the following usage clears the value of the variable variable to make it undefined.
SET variable=
There is no sign behind the equal sign. If it is written as SET variable=, the variable value is not empty, but equals two quotation marks
Example:
@echo off
Set var=, Im worth it
Echo%var%
Pause
See set var=. Im a value, and thats how BAT sets variables directly in batch processing!
Set is the command, VaR is the variable name = number, the right I am the value is the value of the variable
In the batch we will refer to this is the variable name with two var% (percent) expansion, such as%var%
SET also provides an interactive interface, allowing users to enter their own values, then we according to this value to do the operation, the grammar I would say that SET now, only need to add a /P parameter can be!
SET /P variable=[promptString]
Example:
@echo off
Set /p var=, enter the value of a variable:
The echo you entered%var% ~_~
Pause
Set /p is command syntax. VaR is the variable name = the right of the number enter the variable value: this is the prompt, not the value of the variable.!
After the operation, we prompt behind direct input 1, will display a row you enter 1 ~_~
Now talk about other functions of SET
Using set / view the help of SET, we found SET in addition to what I said above
SET, [variable=[string]]SET, /P, variable=[promptString], these two grammar, there are
您可能关注的文档
最近下载
- 成都市金牛区2020-2021学年下学期一年级期末考试语文试卷(部编版).pdf VIP
- 儿科“一科一品”之做有温度的护理人.pptx VIP
- 2025年广州数学中考试题及答案.doc VIP
- 中文释义 PASS图解速记高中词汇正序版.xlsx VIP
- 辅警招聘考试公安基础知识(情景分析题)模拟试卷3(题后含答案及解析).pdf VIP
- 工程质量风险分级管控清单 .pdf VIP
- 生物医学工程先进制造:第一章 绪论-2015.ppt VIP
- 培养员工归属感培养员工归属感.ppt VIP
- 古方上篇后八方.张志峰老师讲解和答疑2016.3.5.doc VIP
- JingChaDaXue《灭火救援指挥》期末试卷(A)参考答案.docx VIP
文档评论(0)