RosettaCodeData/Task/Truncate-a-file/PowerShell/truncate-a-file.ps1

4 lines
72 B
PowerShell
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
Function Truncate-File(fname) {
$null | Set-Content -Path "$fname"
}