Windows等效的Unix tail命令[关闭]
我正在寻找相当于Unix'tail'的命令,它允许我在写入时查看日志文件的输出。 #1楼 Windows资源工具包工具 包中提供了 tail 命令和许多其他命令。 #2楼 任何对使用批处理命令的 DOS CMD尾部感兴趣的人(见下文)。 这不是完美的,有时会重复。 用法:tail.bat -d tail.bat -f -f @echo off SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION rem tail.bat -d <lines> <file> rem tail.bat -f <file> rem ****** MAIN ****** IF "%1"=="-d" GOTO displayfile IF "%1"=="-f" GOTO followfile GOTO end rem ************ rem Show Last n lines of file rem ************ :displayfile SET skiplines=%2 SET sourcefile=%3 rem *** Get the current line count of file *** FOR /F "usebackq tokens=3,3 delims= " %%l IN (`find /c /v "" %sourcefile