如何在 PowerShell 中将文件夹中的所有文件作为参数传递?
如何动态加载文件夹中的所有文件并将它们作为参数传递给程序?
现在我必须
coffee --bare --join app.js -c utils.coffee app.coffee forum.coffee items.coffee models.coffee activate.coffee chat.coffee
这样做,所有 .coffee 文件都应该自动加载,所以当我添加新文件时,我不必编辑我的脚本。
谢谢
How is it possible to dynamically load all files in folder and pass them as argument to program?
Now I have to do
coffee --bare --join app.js -c utils.coffee app.coffee forum.coffee items.coffee models.coffee activate.coffee chat.coffee
while, all .coffee files should be loaded automatically, so when I add new file I don't have to edit my script.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以像这样执行命令:
You can execute your command like this:
您可以使用以下命令将所有文件转换为字符串
然后使用 start-process< /a> 调用命令
EDIT
如果您没有可以使用的 powershell 社区扩展
You can all all of the files to a string using the following
Then use start-process to invoke the command
EDIT
If you dont have the powershell community extension you can use