linecontains
説明
フィルターチェーン系のタグです。
指定された文字列を含む、行のみを次へ渡します。
文字列の指定はcontainsエレメント内で行います。
含まない行のみを処理したい場合はこちらを参照
属性
id
含む
含まれる
サンプル
googleを含む行のみをコピーします。 <target name="copy"> <copy file="log" tofile="google"> <filterchain> <linecontains > <contains value="google"/> </linecontains> </filterchain> </copy> </target>