Add go-repos.ps1

This commit is contained in:
Markus Fleschutz
2021-04-16 16:51:46 +02:00
parent c0d474a674
commit 50cabecd57
3 changed files with 17 additions and 0 deletions

15
Scripts/go-repos.ps1 Normal file
View File

@ -0,0 +1,15 @@
#!/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
}