Add cd-videos.ps1

This commit is contained in:
Markus Fleschutz
2021-04-21 08:22:47 +02:00
parent 96635e4911
commit 2041a385fa
3 changed files with 19 additions and 0 deletions

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

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