ebpf-for-windows/scripts/escape_text.ps1

10 строки
315 B
PowerShell

# Copyright (c) Microsoft Corporation
# SPDX-License-Identifier: MIT
param ($InputFile, $OutputFile)
$lines = Get-Content $InputFile
$lines = $lines | % { if ($_) { $_ = $_.Replace('\', '\\').Replace('"', '\"'); Write-output ('"' + $_ + '\n"') } else { Write-output ('"\n"') } }
$lines | Out-File $OutputFile