PowerShell/Scripts/cd-repos.ps1
Markus Fleschutz 6daa6a19ca Add cd-up.ps1
2021-04-21 07:29:52 +02:00

18 lines
416 B
PowerShell

#!/usr/bin/pwsh
<#
.SYNTAX cd-repos.ps1
.DESCRIPTION go to the user's Git repositories folder
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {
$TargetDir = resolve-path "$HOME/Repos"
set-location "$TargetDir"
"📂$TargetDir"
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}