私はいくつかのテキストファイルを解析しようとしましたが、最後に2行から1行を作成する必要があります。
19.10.2012 15:33:22<TAB here!>
textline<TAB here!>#1
19.10.2012 15:33:13<TAB here!>
textline<TAB here!>#2
19.10.2012 15:29:29<TAB here!>
textline<TAB here!>#3
19.10.2012 15:29:23<TAB here!>
textline<TAB here!>#4
出力で私はこれを持っている必要があります:
19.10.2012 15:33:22<TAB here!>textline<TAB here!>#1
19.10.2012 15:33:13<TAB here!>textline<TAB here!>#2
19.10.2012 15:29:29<TAB here!>textline<TAB here!>#3
19.10.2012 15:29:23<TAB here!>textline<TAB here!>#4
お願い助けて!:)
編集:これは私が持っているものです:
Get-ChildItem $Path -Recurse -Include *.* | Foreach-Object {$_.FullName} |
Foreach-Object {
Write-Host $_
$Item = Get-Item $_
(Get-Content $_ -ReadCount 2 -Encoding UTF8) | Foreach-Object {
(-join $_)}} | Set-Content $Item -Encoding UTF8