mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 07:10:15 -05:00
19 lines
274 B
PowerShell
19 lines
274 B
PowerShell
function New-StringTree()
|
|
{
|
|
param(
|
|
[int]$Spacing
|
|
)
|
|
|
|
if ($Spacing -eq 0) {
|
|
return '';
|
|
}
|
|
|
|
[string]$spaces = '\_ ';
|
|
|
|
while ($Spacing -gt 1) {
|
|
$Spacing -= 1;
|
|
$spaces = ' ' + $spaces;
|
|
}
|
|
|
|
return $spaces;
|
|
}
|