本帖最后由 flashercs 于 2022-6-5 10:41 编辑
- @echo off
- cd /d "%~dp0"
- dir /a-d /b /s "D:\Test\*.txt"|powershell -c "$encoding=[system.text.encoding]::default;foreach($file in $input){[system.io.file]::writealltext($file,([system.io.file]::readalltext($file,$encoding) -replace '[\r\n]+$'),$encoding);}"
- pause
- exit /b
复制代码
|