Skip to content

Latest commit

History

History
61 lines (51 loc) 路 1.27 KB

File metadata and controls

61 lines (51 loc) 路 1.27 KB

The cd-up2.ps1 Script

This PowerShell script changes the working directory to two directory level up.

Parameters

/Repos/PowerShell/scripts/cd-up2.ps1 [<CommonParameters>]

[<CommonParameters>]
    This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, 
    WarningVariable, OutBuffer, PipelineVariable, and OutVariable.

Example

PS> ./cd-up2
馃搨C:\

Notes

Author: Markus Fleschutz | License: CC0

Related Links

https://github.com/fleschutz/PowerShell

Script Content

<#
.SYNOPSIS
	Sets the working directory to two directory levels up
.DESCRIPTION
	This PowerShell script changes the working directory to two directory level up.
.EXAMPLE
	PS> ./cd-up2
	馃搨C:\
.LINK
	https://github.com/fleschutz/PowerShell
.NOTES
	Author: Markus Fleschutz | License: CC0
#>

try {
	$path = Resolve-Path "../.."
	if (-not(Test-Path "$path" -pathType container)) { throw "Folder at 馃搨$path doesn't exist (yet)" }
	Set-Location "$path"
	"馃搨$path"
	exit 0 # success
} catch {
	"鈿狅笍 Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
	exit 1
}

(page generated by convert-ps2md.ps1 as of 01/23/2025 12:15:19)