English 中文(简体)
为.bat 文件使用自定义的 Tee 命令
原标题:Using a custom Tee command for .bat file

我试图使用为蝙蝠文件撰写的 rel=“noreferrer” >tee 代码,但在我的代码中执行有困难。我不想使用任何第三方安装来解决电话问题,因为如果我在一年中格式化计算机并想要再次运行程序,我希望代码能够工作。

我把它设置成这样:

mycommand.exe | tee.bat -a output.txt

我用一个 seperate < code>.bat 文件尝试过,并尝试了将原 < code>.bat 中的功能(原版)作为一个函数(原版)纳入其中,但未能做到:

myprogram.exe | call tee -a output.txt
echo.
echo.
echo.
SET /P restart="Do you want to run again? (1=yes, 2=no): "
if "%restart%"=="1" GOTO LoopStart


::--------------------------------------------------------
::-- Function section starts below here
::--------------------------------------------------------
:tee
:: Check Windows version
IF NOT "%OS%"=="Windows_NT" GOTO Syntax
| 
:: Keep variables local
SETLOCAL

:: Check command line arguments
SET Append=0
IF /I [%1]==[-a] (
    SET Append=1
    SHIFT
)
IF     [%1]==[] GOTO Syntax
IF NOT [%2]==[] GOTO Syntax

:: Test for invalid wildcards
SET Counter=0
FOR /F %%A IN ( DIR /A /B %1 2^>NUL ) DO CALL :Count "%%~fA"
IF %Counter% GTR 1 (
    SET Counter=
    GOTO Syntax
)

:: A valid filename seems to have been specified
SET File=%1

:: Check if a directory with the specified name exists
DIR /AD %File% >NUL 2>NUL
IF NOT ERRORLEVEL 1 (
    SET File=
    GOTO Syntax
)

:: Specify /Y switch for Windows 2000 / XP COPY command
SET Y=
VER | FIND "Windows NT" > NUL
IF ERRORLEVEL 1 SET Y=/Y

:: Flush existing file or create new one if -a wasn t specified
IF %Append%==0 (COPY %Y% NUL %File% > NUL 2>&1)

:: Actual TEE
FOR /F "tokens=1* delims=]" %%A IN ( FIND /N /V "" ) DO (
    >  CON    ECHO.%%B
    >> %File% ECHO.%%B
)

:: Done
ENDLOCAL
GOTO:EOF


:Count
SET /A Counter += 1
SET File=%1
GOTO:EOF


:Syntax
ECHO.
ECHO Tee.bat,  Version 2.11a for Windows NT 4 / 2000 / XP
ECHO Display text on screen and redirect it to a file simultaneously
ECHO.
IF NOT "%OS%"=="Windows_NT" ECHO Usage:  some_command  ¦  TEE.BAT  [ -a ]  filename
IF NOT "%OS%"=="Windows_NT" GOTO Skip
ECHO Usage:  some_command  ^|  TEE.BAT  [ -a ]  filename
:Skip
ECHO.
ECHO Where:  "some_command" is the command whose output should be redirected
ECHO         "filename"     is the file the output should be redirected to
ECHO         -a             appends the output of the command to the file,
ECHO                        rather than overwriting the file
ECHO.
ECHO Written by Rob van der Woude
ECHO http://www.robvanderwoude.com
ECHO Modified by Kees Couprie
ECHO http://kees.couprie.org
ECHO and Andrew Cameron

我试图分割输出, 这样我就可以将控制台输出保存到文件, 同时仍然能够与运行中的程序互动 。

< 坚固> 如何让 Tee 命令与我的.bat 妥善工作, 从而可以将输出分割成文件或控制台 。

最佳回答

您试图在管道内调用批量函数, 总是会失败, 因为 Windows 管道是如何工作的- Windows 即时通过新的 CMD 贝壳将管子两侧都连接起来的 。 更多信息请参见 < a href=" https:// stackoverflow.com/ a/8194279/ 1012053 > https:// stackoverflow.com/ a/8194279/ 1012053 。

Rob van der Woude 版本的批量文字无法为您工作, 因为它使用 < code> foror/ F 来读取命令的结果 - 在读取任何行之前, 命令必须执行到完成 。 如果您在执行命令时需要用户互动, 那将无效 。 如果您需要用户互动, 使用该版本的队列, 您可以简单地将输出重定向到文件, 然后在完成后, < code> TYPE 文件。 显然不是你想要的 。

有纯批量的技巧可以让你更接近,但我认为还有一个问题不能用纯批量来解决。 您的可执行文件可以在不发布新行的情况下在线上加一个提示。 我相信纯本地批量总是读出整行( 除非在流末端除外 ) 。 我不知道按字符阅读字符的批量方法 。

<%% em> 轻微校正 - > SET/P 可读取管道输入的部分行, 但它有限制, 无法用于稳健的批量字式解决方案 : 无法确定每个行的结束时间 。 每个行的结束时间限为 1021 个字符 。 它从每行的结尾处将控制字符分隔开来 。 无法辨别它何时到达输入流的尾端 。

但有一个简单的解决方案 — — JScript 或 VBScript 像冠军一样工作, 不需要任何特殊的安装。 这是适合您的混合 JScript/ batch 脚本。 JScript 写得很差, 有很大的改进空间。 例如, 没有错误检查 。

我把脚本另存为 tee.bat 。 第一个需要的参数指定要写入的文件的名称。 默认情况下, 如果文件已经存在, 文件会被覆盖。 如果提供了第二个参数( 数值并不重要), 那么输出将被附加到文件中 。

@if (@X)==(@Y) @end /* Harmless hybrid line that begins a JScript comment

::--- Batch section within JScript comment that calls the internal JScript ----
@echo off
cscript //E:JScript //nologo "%~f0" %*
exit /b

----- End of JScript comment, beginning of normal JScript  ------------------*/
var fso = new ActiveXObject("Scripting.FileSystemObject");
var mode=2;
if (WScript.Arguments.Count()==2) {mode=8;}
var out = fso.OpenTextFile(WScript.Arguments(0),mode,true);
var chr;
while( !WScript.StdIn.AtEndOfStream ) {
  chr=WScript.StdIn.Read(1);
  WScript.StdOut.Write(chr);
  out.Write(chr);
}

Usage is pretty much like you would expect.

command.exe | tee.bat output.txt 1

最后一个一个参数强制附加模式。 它可能是除 1之外的任何值

It is possible to put everything in one batch script as you seem to prefer.

@if (@X)==(@Y) @end /* Harmless hybrid line that begins a JScript comment

::--- Batch section within JScript comment ----------------------------
@echo off

::This block of code handles the TEE by calling the internal JScript code
if "%~1"=="_TEE_" (
  cscript //E:JScript //nologo "%~f0" %2 %3
  exit /b
)

::The rest of your batch script goes here

::This pipes to TEE in append mode
mycommand.exe | "%~f0" _TEE_ output.txt 1

exit /b

----- End of JScript comment, beginning of normal JScript  ------------------*/
var fso = new ActiveXObject("Scripting.FileSystemObject");
var mode=2;
if (WScript.Arguments.Count()==2) {mode=8;}
var out = fso.OpenTextFile(WScript.Arguments(0),mode,true);
var chr;
while( !WScript.StdIn.AtEndOfStream ) {
  chr=WScript.StdIn.Read(1);
  WScript.StdOut.Write(chr);
  out.Write(chr);
}

<%%% em> 更新

对于任何对批量脚本有学术兴趣的人,我已经在上张贴了纯本地的批量脚本。“http://www.dostips.com/forum/viewtop.php?f=3&t=5386” rel=“noreferrer”>Assynchronous 本地批量脚本 ,但这种混合方法是我的首选脚本解决方案。

问题回答

暂无回答




相关问题
Why running a service as Local System is bad on windows?

I am trying to find out the difference between difference service account types. I tumbled upon this question. The answer was because it has powerful access to local resources, and Network Service ...

Programmatically detect Windows cluster configuration?

Does anyone know how to programatically detect that a Windows server is part of a cluster? Further, is it possible to detect that the server is the active or passive node? [Edit] And detect it from ...

get file icon for Outlook appointment (.msg)

I ve read Get File Icon used by Shell and the other similar posts - and already use SHFileInfo to get the associated icon for any given extension, and that works great. However, Outlook uses ".msg" ...

Identifying idle state on a windows machine

I know about the GetLastInputInfo method but that would only give me the duration since last user input - keyboard or mouse. If a user input was last received 10 minutes ago, that wouldn t mean the ...

Terminating a thread gracefully not using TerminateThread()

My application creates a thread and that runs in the background all the time. I can only terminate the thread manually, not from within the thread callback function. At the moment I am using ...

热门标签