Add cd-pics.ps1

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

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

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