====== PlayGround ====== * PlayGroundは適当に記載練習や確認するところ。 ====== ChatGPTで出力したもの ====== ====== Powershell ====== * [[カレントディレクトリのCSVをTSVにする]] * [[Powershell1Powershell2]] ====== その他 ====== * [[:playground:テスト]] * [[:playground:パスを作っていく!]] * [[:このサイトについて:利用規約]] * コピペ用サンプル Get-ChildItem -Filter *.csv | ForEach-Object { $csv = Import-Csv $_.FullName $csv | export-csv -Path "$($_.BaseName).tsv" -Encoding utf8 -Delimiter "`t" }