如何批量根据某种表达式命名的文件夹
我想创建许多名称类似于 folder_x
的文件夹,其中 x 是小于 256 的偶数。是否有 unix 命令/dos 命令或一些 shell 脚本可以运行来执行此操作? 或者可能是一些可以创建大量文件夹的免费实用程序?
我想在 Windows 上执行此操作。
I want to create many folders whose names are like folder_x
where x is an even number less than 256. Is there a unix command/dos command or some shellscript that I can run to do this?
Or may be some free utility program that does mass folder creation?
I want to do this on Windows.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 bash 和其他兼容的 shell 中:
In bash and other compatible shells:
一个简单的 bash 脚本就可以做到这一点。
A simple bash script will do that.
在 Windows
cmd
提示符中,这将是:如果要将其添加到 .bat 文件,请记住它将需要双
%
:In a Windows
cmd
prompt, this would be:If you want to add this to a .bat file, remember it will need double
%
: