Functions/GenXdev.Console/Set-LocationParent3.ps1

###############################################################################

<#
.SYNOPSIS
Provides the .... alias to go three directory up
 
.DESCRIPTION
Provides the .... alias to go three directory up
#>

function Set-LocationParent3 {

    [CmdletBinding()]
    [Alias("....")]

    param (

    )

    Set-Location ..
    Set-Location ..
    Set-Location ..
    Get-ChildItem
}