Questions tagged «tail»

Unix命令查看文件结尾

2
是否有任何支持WebDav的工具
我的问题是,一个专有的SaaS平台即时开发/仅用于通过WebDav提供日志文件。在开发过程中,这个日志文件可以在一天结束时变得非常大(想想200 Mb +),但在尝试追踪“一般错误”时非常详细和有用。 现在发生了什么,看看日志文件我必须每次下载200 Mb文件(如果我删除它不会自动重新创建:(),这意味着即使在良好的连接上你也要等待1 -2分钟用于下载文件。 所以实际问题再次出现:是否有任何工具可以在每5秒钟在文件的时间戳上查看(例如)并且只需下载添加的块(使用计算出的大小差异)。
2 logging  tail  webdav 

0
tail -f没有在AFP安装的共享上更新
我正在运行Mac OS 10.6.8 我已经安装了一个网络驱动器,我需要查看其文件。我打算用尾巴。 当我运行以下内容时: tail -f /Volumes/Cache-A/TransferLog.txt 我最终得到了一个tail看起来正确的报告,但它没有更新。(好像我打字了,tail而不是tail -f外壳没有回来 - 我必须打字Ctrl- C回到我可以输入的地方) Cache-A驱动器是一个linux系统,我确认当我运行命令时 tail -f TransferLog.txt 它按预期更新。 OS X tail命令没有正确更新的原因是什么?是因为它是网络安装的驱动器而不是本地文件?通过NFS安装会有帮助吗?(我无法通过AFP登机) 编辑:原来我通过AFP安装,虽然同样的问题正在发生。(我对wireshark不是那么聪明 - 但我也会看一遍)
2 macos  tail 

1
当尾巴-f正在运行时^ L
我经常tail用来监控错误: tail -f /var/log/apache2/error_log 我可以使用快捷方式cmd+K来清除屏幕(OSX),但我已经习惯于^L在其他linuxy情况下使用。当我在tail监视文件时尝试使用它时,我看到输出^L: [Fri Sep 30 12:08:58 2011] [notice] Apache/2.2.19 (Unix) PHP/5.3.6 with Suhosin-Patch DAV/2 mod_wsgi/3.3 Python/2.7.1 configured -- resuming normal operations ^L^L^L^L 有没有办法^L按照我在这种情况下期待它的方式开始工作?

3
使用tail -f结束脚本的问题
我使用以下脚本重新启动在Solaris Sun 5.10机器上运行的Java服务器... pkill -9 java nohup ./start_java.sh & tail -f smx.log 我SSH到框(使用Putty)运行脚本。 它只要正常工作,因为我ctrl-c 出了 tail -f关闭腻子之前。如果我不停止尾巴(只是关闭腻子窗口),它会杀死这个start_java过程。 我已经改变了脚本以删除它tail -f,但我很困惑为什么会发生这种情况?
ssh  putty  tail  nohup 

1
如何通过ssh拖入远程服务器上的最后一个文件
背景 我总是尾部记录日志(错误和信息)..这需要以下手动步骤:1. SSH进入服务器2. cd进入日志目录3.识别最后一个错误或信息文件4.尾入 这是典型的日志目录: error-2017-12-11.log error-2017-12-30.log error-2018-01-05.log error-2018-01-11.log error-2018-01-17.log error-2018-01-23.log error-2018-01-29.log info-2017-12-26.log info-2018-01-01.log info-2018-01-07.log info-2018-01-13.log info-2018-01-19.log info-2018-01-25.log info-2018-01-31.log error-2017-12-13.log error-2017-12-31.log error-2018-01-06.log error-2018-01-12.log error-2018-01-18.log error-2018-01-24.log error-2018-01-30.log info-2017-12-27.log info-2018-01-02.log info-2018-01-08.log info-2018-01-14.log info-2018-01-20.log info-2018-01-26.log info-2018-02-01.log error-2017-12-26.log error-2018-01-01.log error-2018-01-07.log error-2018-01-13.log error-2018-01-19.log error-2018-01-25.log error-2018-01-31.log info-2017-12-28.log info-2018-01-03.log info-2018-01-09.log info-2018-01-15.log info-2018-01-21.log info-2018-01-27.log info-2018-02-02.log error-2017-12-27.log error-2018-01-02.log error-2018-01-08.log …
linux  bash  ssh  unix  tail 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.