为了账号安全,请及时绑定邮箱和手机立即绑定

在window系统启动 filebeat head 命令 问题

window 系统可以使用什么命令替代,head

正在回答

4 回答

windows 下可以替代 head 的命令是 gc

https://stackoverflow.com/questions/9682024/how-to-do-what-head-tail-more-less-sed-do-in-powershell

gc log.txt | select -first 10 # head

gc -TotalCount 10 log.txt     # also head

gc log.txt | select -last 10  # tail

gc -Tail 10 log.txt           # also tail (since PSv3), also much faster than above option

gc log.txt | more             # or less if you have it installed

gc log.txt | %{ $_ -replace '\d+', '($0)' }         # sed


0 回复 有任何疑惑可以回复我~
#1

sunyaox 提问者

谢谢!
2017-12-01 回复 有任何疑惑可以回复我~

Get-Content nginx.log -TotalCount 2|./filebeat -e -c ngnix.yml


0 回复 有任何疑惑可以回复我~
  1. 进入到解压的filebeat-6.0.0-windows-x86_64下,然后将nginx.yml拷贝到目录下。

  2. 打开dos窗口切换目录到filebeat-6.0.0-windows-x86_64,执行输入命令  filebeat -e -c nginx.yml  回车。

  3. 将nginx.log的两条日志内容,粘贴到启动的到dos窗口,就可以了。

2 回复 有任何疑惑可以回复我~

然后呢

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

在window系统启动 filebeat head 命令 问题

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信