PowerShell/Scripts/cd-up4.ps1
2021-10-12 21:51:51 +02:00

23 lines
535 B
PowerShell

<#
.SYNOPSIS
Sets the working directory to four directory levels up
.DESCRIPTION
This script changes the working directory to four directory levels up.
.EXAMPLE
PS> ./cd-up4
(four levels up)
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz · License: CC0
#>
$TargetDir = resolve-path "../../../.."
if (-not(test-path "$TargetDir" -pathType container)) {
write-warning "Sorry, the folder 📂$TargetDir does not exist (yet)"
exit 1
}
set-location "$TargetDir"
"📂$TargetDir"
exit 0 # success