Windows equivalent of the 'tail' command

前端 未结 21 2945
长情又很酷
长情又很酷 2020-11-28 01:48

Is there a way to simulate the *nix tail command on the Windows command line? I have a file and I want a way to snip off the first n lines of text. For example:

21条回答
  •  离开以前
    2020-11-28 02:46

    Powershell:

    Get-Content C:\logs\result.txt -Tail 10
    
    Get-Content C:\logs\result.txt -wait (monitor the tail)
    

提交回复
热议问题