Sha256: 44e592d54ec90172968a9062ff76af59a0279a522fa0399943c9e4944c616751

Contents?: true

Size: 386 Bytes

Versions: 2

Compression:

Stored size: 386 Bytes

Contents

@echo off
set shown=0
REM This next line switches the codepage to prevent running into a 'Out of memory' bug
REM in more.com on  Windows 2008 (and maybe newer) systems.
chcp 437 > nul 2>&1
:tail
if NOT EXIST "%1" (
  IF NOT %shown%==0 goto :eof
  goto tail
)
for /f "tokens=1 delims=*" %%l in ('findstr /R /V "^$" %1 ^| more +%shown%') DO (
  echo %%l
  set /A shown=shown+1
)
goto tail

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
knife-winops-2.1.0 lib/chef/knife/winops_bootstrap/tail.cmd
knife-winops-2.0.0 lib/chef/knife/bootstrap/tail.cmd