Added go-home.ps1, go-downloads.ps1, and go-music.ps1

This commit is contained in:
Markus Fleschutz
2021-02-26 14:41:07 +01:00
parent 57bde59bce
commit 33f5b5b408
8 changed files with 54 additions and 3 deletions

15
Scripts/go-downloads.ps1 Executable file
View File

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