mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
22 lines
475 B
PowerShell
Executable File
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
|