本文介绍了该命令批量意味着什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在查看一个批处理文件,并且看到下面的行.我知道%LOG%是什么,但是我不知道"rm"命令在做什么.谁能告诉我?
I'm looking at a batch file and I see the line below. I know what %LOG% is, but I do not know what the "rm" command is doing. Can anyone tell me?
rm "%LOG%"
推荐答案
即使这不是Unix,rm
仍将是删除文件的命令.例如,请参见 http://www.mkssoftware.com/docs/man1/rm .1.asp 或 http://www.cygwin.com/
Even if this is not Unix, rm
is going to be a command to delete a file. For example, see http://www.mkssoftware.com/docs/man1/rm.1.asp or http://www.cygwin.com/
这篇关于该命令批量意味着什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!