#あるディレクトリ以下にある全部のファイルの改行コードをCR+LFからLFに変更する
ディレクトリ配下のファイルが全部上書きで変更されます。
crlf2lf.ps1
ls -n -r -file | foreach { ((Get-Content $_) -join "`n") + "`n" | Set-Content -NoNewline $_}
##参考にしたサイト
Go to list of users who liked
More than 3 years have passed since last update.
#あるディレクトリ以下にある全部のファイルの改行コードをCR+LFからLFに変更する
ディレクトリ配下のファイルが全部上書きで変更されます。
ls -n -r -file | foreach { ((Get-Content $_) -join "`n") + "`n" | Set-Content -NoNewline $_}
##参考にしたサイト
Register as a new user and use Qiita more conveniently
Go to list of users who liked