Some local changes

This commit is contained in:
John Doty 2013-07-08 15:49:44 -07:00
parent 85d3c38b00
commit 2a4c6969ce
3 changed files with 605 additions and 129 deletions

View file

@ -184,3 +184,14 @@ function ConvertFrom-EKB($text)
return $ekb
}
function Wrap-Text ($txt)
{
$t = [string]$txt
while($t.Length -gt 77) {
$t.Substring(0, 77)
$t = $t.Substring(77)
}
$t
}