mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-06-30 04:31:39 +02:00
Add cd-ssh.ps1
This commit is contained in:
21
Scripts/cd-ssh.ps1
Executable file
21
Scripts/cd-ssh.ps1
Executable file
@ -0,0 +1,21 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
cd-ssh.ps1
|
||||
.DESCRIPTION
|
||||
Change the working directory to the user's SSH folder
|
||||
.EXAMPLE
|
||||
PS> .\cd-ssh.ps1
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
#>
|
||||
|
||||
$TargetDir = resolve-path "$HOME/.ssh"
|
||||
if (-not(test-path "$TargetDir" -pathType container)) {
|
||||
write-warning "Sorry, there is no folder 📂$TargetDir (yet)"
|
||||
exit 1
|
||||
}
|
||||
set-location "$TargetDir"
|
||||
"📂$TargetDir"
|
||||
exit 0
|
Reference in New Issue
Block a user