powershell打破180个字符

时间:2014-01-09 19:31:04

标签: powershell websocket

我有一个 lorem.txt 文件,其中包含以下内容

Lorem ipsum dolor sit amet, latine apeirian molestiae eieum. Reque clita laudem at quo, dicat petentium disputationi eum an. His cu latine adolescens, agam diceret senserit sea at, utinam utamur salutatus eos cu. Solum fuisset suscipit eu ius. Qui tollit ubique conceptam cu, ne his nullam postulant.

https://github.com/joewalnes/websocketd

UPDATED

当我使用websocketd运行以下命令时,它会将字符串分解为80个字符:

websocketd.exe powershell "Get-Content lorem.txt"

将websocket框架切成80个字符的块。有什么办法可以强制powershell命令不使用默认的80个字符宽度?

由于

1 个答案:

答案 0 :(得分:0)

>将标准输出发送到文件。此输出可能受控制台(powershell)窗口大小的限制。要存储来自powershell的输出,您应该使用PowerShell cmdlet,如Out-File。例如:

powershell "Get-Content lorem.txt | Out-File out.txt"

Out-File还有一个-Width参数,您可以在其中指定eac行的字符数限制。