mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
22 lines
497 B
PowerShell
Executable File
22 lines
497 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
cd-scripts.ps1
|
|
.DESCRIPTION
|
|
Change the working directory to the PowerShell scripts folder
|
|
.EXAMPLE
|
|
PS> ./cd-scripts
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
#>
|
|
|
|
$TargetDir = resolve-path "$PSScriptRoot"
|
|
if (-not(test-path "$TargetDir" -pathType container)) {
|
|
write-warning "Sorry, the PowerShell scripts folder at 📂$TargetDir does not exist (yet)"
|
|
exit 1
|
|
}
|
|
set-location "$TargetDir"
|
|
"📂$TargetDir"
|
|
exit 0 # success
|