Skip to content

Instantly share code, notes, and snippets.

@dathanb
Created June 23, 2024 16:31
Show Gist options
  • Save dathanb/25825857b2e082a7bc5f7327f6e27230 to your computer and use it in GitHub Desktop.
Save dathanb/25825857b2e082a7bc5f7327f6e27230 to your computer and use it in GitHub Desktop.
Convert line endings from unix to windows in Powershell
((Get-Content $FilePath) -join "`r`n") + "`r`n" | Set-Content -NoNewline $FilePath
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment