尾随空格
当我运行以下命令时,它会导致每个对象后面都有尾随空格。对我来说删除它们的最佳方法是什么?
获取 VMHost |选择名称 |输出文件 c:\temp\hosts.txt
When I run the following command it results in having trailing spaces after each object. What is the best way for me to remove them?
Get-VMHost | select Name | out-file c:\temp\hosts.txt
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那么您真的需要单个属性的表视图吗?请记住,表和列表输出应该由人类读取,而不是通过管道传输到文件中。
您可以用来
仅输出名称。
So you really need the table view for a single property? Remember that the table and list outputs are supposed to be read by humans, not piped into a file.
You can use
to just output the names.
使用
Set-Content
(和/或Add-Content
)来避免格式化工件。Use
Set-Content
(and/orAdd-Content
) to not have formatting artifacts.