0

私はこのようなファイルを持っています:

Executing resource: D:\waste2\SPC\depks_rtl_teller_custom.spc   
Executing resource: D:\waste2\SPC\ifpks_msg_incoming_cluster.spc  
Failed to execute:   
Executing resource: D:\waste2\SQL\casapks_batch.sql  
Failed to execute:  
Executing resource: D:\waste2\SQL\depks_decbatop_kernel.sql  
Executing resource: D:\waste2\SQL\depks_services.sql  
Failed to execute:    

文字列「Failedtoexecute:」の直前のすべての行を選択して新しいファイルにコピーするには、バッチファイルまたはperlスクリプトまたはANTスクリプトが必要です。単に新しいファイルに必要な失敗したファイルのリスト。手伝ってください。

4

6 に答える 6

3

サプライズ!ネイティブのWindowsFINDSTRコマンドは、この問題を非常にうまく処理できます:-)perlやその他の非ネイティブユーティリティは必要ありません。

@echo off
setlocal
::Define LF variable containing a linefeed (0x0A)
set LF=^


::Above 2 blank lines are critical - do not remove

::Define CR variable containing a carriage return (0x0D)
for /f %%a in ('copy /Z "%~dpf0" nul') do set "CR=%%a"

setlocal enableDelayedExpansion
::regex "!CR!*!LF!" will match both Unix and Windows style End-Of-Line
findstr /rc:"!CR!*!LF!Failed to execute:" "test.txt" >"failed.txt"
type failed.txt

WindowsFINDSTRコマンドの文書化されていない機能と制限は何ですか?を参照してください。詳細については。

于 2012-11-04T16:19:29.357 に答える
2

perlを使用すると、次のようなことができます。

while(<>) {
  print $prev if /^Failed to execute:/;
  $prev = $_;
}

シェルから直接実行するには、次のコマンドを使用できます

perl -ne 'print $prev if /^Failed to execute:/; $prev=$_' path/to/your/file
于 2012-11-04T12:01:10.853 に答える
1

tacとsedの使用:

tac file | sed -n '/Failed to execute/{n;p;}'  | tac
于 2012-11-04T12:05:13.843 に答える
1

2つのgrep呼び出しを使用することもできますが、これはハックのようなものです(「失敗」または「実行中」のいずれかで始まる行しかない場合)。

grep -B1 '^Failed to execute' your/file | grep '^Executing'

または

grep -B1 '^Failed to execute' your/file | grep -v '^--' | grep -v '^Failed to execute'
于 2012-11-04T12:10:45.483 に答える
0

PowerShellを使用する場合:

PS II> Select-String "Failed to execute:" c:\file.txt -co 1 | % { $_.context.Precontext }
于 2012-11-06T13:53:34.187 に答える
0

または単に:

for /f "delims=" %%a in (c:\test.txt) do (
  echo(%%a| find /i "Failed to execute:" >Nul && (
    setlocal enableDelayedExpansion
    echo !msg!
    endlocal
  )
  set "msg=%%a"
)
于 2012-11-06T14:36:19.223 に答える