>백엔드 개발 >PHP 튜토리얼 >【PHP分享】Windows tail工具分享

【PHP分享】Windows tail工具分享

WBOY
WBOY원래의
2016-06-23 13:48:301039검색

  作者:zhanhailiang 日期:2014-09-28

在Linux下可以使用tail -f工具实时查看输出的日志。最近切换到本地Windows开发环境,顿时有点不爽。百度了下,终于找到tail的Windows的实现版本。

1. 下载tail,解压后将tail.exe复制到Path路径下,以笔者为例,C:\Windows\System32;

2. 测试如下:

Microsoft Windows [版本 6.1.7601]版权所有 (c) 2009 Microsoft Corporation。保留所有权利。D:\Users\wade.zhan><strong>tail --help</strong>tail 1.0.0.1 created by Jorgen BosmanUsage: tail [options] fileOptions:  -[x]f : Follow the file and display new lines as they are written to the file          Optionally display the x last lines first (default=10)  -n x  : Displays the last x lines of the file  -s x  : Sleeps x miliseconds between 2 read attempts for -f optionD:\Users\wade.zhan><strong>tail -f D:/temp/php-errors.log</strong>
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.