PowerShell を使用して、タブ形式のデータを CSV 形式に変換するバッチファイル

2024年4月24日

バッチファイル

powershell -Command "Get-Content -Path 'output3.txt' -Encoding Default  | ConvertFrom-Csv -Delimiter "`t" | Export-Csv -Path 'N.csv'  -NoTypeInformation -Encoding Default   "

bat,PowerShell ,windows

Posted by eightban