mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 12:34:25 +01:00
26 lines
611 B
PowerShell
26 lines
611 B
PowerShell
<#
|
|
.SYNOPSIS
|
|
Sets the working directory to three directory levels up
|
|
.DESCRIPTION
|
|
This PowerShell script changes the working directory to three directory levels up.
|
|
.EXAMPLE
|
|
PS> ./cd-up3
|
|
.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: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
|
exit 1
|
|
}
|