PowerShell/Scripts/cd-up3.ps1
2021-04-21 07:47:41 +02:00

18 lines
393 B
PowerShell

#!/usr/bin/pwsh
<#
.SYNTAX cd-up3.ps1
.DESCRIPTION go three directories up
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {
$TargetDir = resolve-path "../../.."
set-location "$TargetDir"
"📂$TargetDir"
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}