码迷,mamicode.com
首页 > 其他好文 > 详细

批处理 常用指令

时间:2019-04-03 12:44:07      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:man   user   app   无提示   命令   hat   and   off   rom   

start   

调用cmd    或者执行可执行程序 ,

如 打开 360 并访问 百度 : start C:\Users\admin\AppData\Roaming\360se6\Application\360se.exe    baidu.com

打开计算器、记事本、画图       start calc.exe    start notepad.exe    start mspaint.exe

 

goto

与 : 连用,递归循环

让你死机的程序

:1

start

goto 1

 

重定向  <   >   ( echo  >>  set  >nul   pause   cls )

@echo off
echo first insert msg>a.txt
echo your msg please:

set /p ifo=
cls
echo please input something:
echo This is what your input: %ifo%

echo write your msg into a.txt:
echo %ifo%>a.txt

set /p ifo=<a.txt
echo read your msg from a.txt
echo %ifo%

pause>nul

 

管道符号 |

将管道符号前面命令的输出结果重定向输出到管道符号后面的命令中去,作为后面命令的输入。使用格式为:command_1|command_2

@echo off
echo aaaa>a.txt
del /p a.txt
pause

(不加/p开关即可实现无提示直接删除)

@echo off

echo aaaa>>a.txt
echo y|del /p a.txt
pause

@echo off
echo aaaa>>a.txt
echo n|del /p a.txt
pause

 

转义符 ^      将特殊符号转化为一般符号,即剥离特殊符号的特殊地位。特殊符号指:| & > <

@echo off
echo aaaa>a.txt
echo 第一句echo执行完毕
echo aaaa^>>>a.txt
echo 第二句echo执行完毕
pause

 

 

 

相关文档

批处理

批处理 常用指令

标签:man   user   app   无提示   命令   hat   and   off   rom   

原文地址:https://www.cnblogs.com/justSmile2/p/10647749.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!