PowerShell/Scripts/go-repos.ps1
2021-04-16 16:51:46 +02:00

16 lines
354 B
PowerShell

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