PowerShell/Scripts/cd-home.ps1
Markus Fleschutz b653133853 Add UTF-8 BOM
2021-09-27 10:38:12 +02:00

22 lines
475 B
PowerShell
Executable File

<#
.SYNOPSIS
cd-home.ps1
.DESCRIPTION
Change the working directory to the user's home directory
.EXAMPLE
PS> ./cd-home
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz · License: CC0
#>
$TargetDir = resolve-path "$HOME"
if (-not(test-path "$TargetDir" -pathType container)) {
write-warning "Sorry, the user's home directory at 📂$TargetDir does not exist (yet)"
exit 1
}
set-location "$TargetDir"
"📂$TargetDir"
exit 0 # success