尾随空格

发布于 2024-10-22 00:27:30 字数 99 浏览 3 评论 0原文

当我运行以下命令时,它会导致每个对象后面都有尾随空格。对我来说删除它们的最佳方法是什么?

获取 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蒲公英的约定 2024-10-29 00:27:30

那么您真的需要单个属性的表视图吗?请记住,表和列表输出应该由人类读取,而不是通过管道传输到文件中。

您可以用来

Get-VMHost | Select -Expand Name | Out-File hosts.txt

仅输出名称。

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

Get-VMHost | Select -Expand Name | Out-File hosts.txt

to just output the names.

一萌ing 2024-10-29 00:27:30

使用Set-Content(和/或Add-Content)来避免格式​​化工件。

Use Set-Content (and/or Add-Content) to not have formatting artifacts.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文