パワーシェルでテキストファイルを読んで指定した行数ごとに横に並べて CSV 出力する

2024年4月24日

バッチファイル

powershell -command "Get-Content output1.txt -ReadCount 2 | %%{$_  -join ','}  | Out-Host"
a
q
b
k
c
m

a,q
b,k
c,m

bat,PowerShell ,windows

Posted by eightban