Add cd-docs.ps1

This commit is contained in:
Markus Fleschutz
2021-04-21 08:14:25 +02:00
parent c556e36e69
commit 01dfa3b83c
3 changed files with 19 additions and 0 deletions

17
Scripts/cd-docs.ps1 Executable file
View File

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