Required/Reserved/UtilityBelt/Functions/Get-RealtimeFileContents.ps1

function global:Get-RealtimeFileContents {
    param(
        [Parameter(Mandatory=$true)][String]$filePath,
        [Int32]$lines
    )
    Get-Content $filePath -Tail $lines -Wait
}