gpt4 book ai didi

powershell - 如何使用PowerShell打印文件的特定行?

转载 作者:行者123 更新时间:2023-12-03 10:33:45 29 4
gpt4 key购买 nike

我在该服务器上没有合适的文本编辑器,但是我需要查看是什么导致某个文件的第10行出现错误。我确实有PowerShell ...

最佳答案

就像使用select一样简单:

Get-Content file.txt | Select -Index (line - 1)

例如。得到第5行
Get-Content file.txt | Select -Index 4

或者您可以使用:
(Get-Content file.txt)[4]

关于powershell - 如何使用PowerShell打印文件的特定行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14759649/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com