mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
27 lines
681 B
PowerShell
Executable File
27 lines
681 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Sets the working directory to the user's downloads folder
|
|
.DESCRIPTION
|
|
This script changes the working directory to the user's downloads folder.
|
|
.EXAMPLE
|
|
PS> ./cd-downloads
|
|
📂/home/markus/Downloads
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
#>
|
|
|
|
try {
|
|
$TargetDir = resolve-path "$HOME/Downloads"
|
|
if (-not(test-path "$TargetDir" -pathType container)) {
|
|
throw "Downloads folder at 📂$TargetDir doesn't exist (yet)"
|
|
}
|
|
set-location "$TargetDir"
|
|
"📂$TargetDir"
|
|
exit 0 # success
|
|
} catch {
|
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
|
exit 1
|
|
}
|