MS-DOS 删除末尾带有通配符
我想要的是一个表示“包含”的通配符 因此,如果我有一个目录,
a.txt
b.param
b.param.config
我只想删除 b.param
和 b.param.config
我已经尝试过 del *.param*
, del *param*
...但除了包含 param
之外,似乎没有任何内容与文件的开头和结尾匹配。
我正在从批处理文件运行该命令,因此如果解决方案是批处理的,那么它也可以工作。
What I want is a wildcard that means "contains"
So if I have a directory with
a.txt
b.param
b.param.config
I would like to delete only b.param
and b.param.config
I have tried del *.param*
, del *param*
... but nothing seems to match anything for the beginning and end of the file but containing param
.
I am running the command from a batch file, so if the solution is in batch that will work as well.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为 del *param* 应该适用于这个...
当你尝试这个时发生了什么?您运行的 MS-DOS 版本是什么?
I think del *param* should work for this...
What happened when you tried this? What version of MS-DOS are you running?