4 lines
72 B
PowerShell
4 lines
72 B
PowerShell
|
|
Function Truncate-File(fname) {
|
||
|
|
$null | Set-Content -Path "$fname"
|
||
|
|
}
|