2024-10-01 15:11:03 +02:00
|
|
|
|
<#
|
2021-09-12 21:52:29 +02:00
|
|
|
|
.SYNOPSIS
|
2024-10-10 14:40:19 +02:00
|
|
|
|
Sets the working directory to the SSH folder
|
2021-10-04 21:29:23 +02:00
|
|
|
|
.DESCRIPTION
|
2024-10-10 14:40:19 +02:00
|
|
|
|
This PowerShell script changes the working directory to the user's secure shell (SSH) folder.
|
2021-09-12 21:52:29 +02:00
|
|
|
|
.EXAMPLE
|
2024-10-10 14:40:19 +02:00
|
|
|
|
PS> ./cd-ssh.ps1
|
2023-08-06 21:35:36 +02:00
|
|
|
|
📂C:\Users\Markus\.ssh
|
2021-09-12 21:52:29 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES
|
2022-05-04 11:50:18 +02:00
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
2021-09-12 21:52:29 +02:00
|
|
|
|
#>
|
|
|
|
|
|
2021-10-19 08:24:17 +02:00
|
|
|
|
try {
|
2024-10-10 14:40:19 +02:00
|
|
|
|
$path = "~/.ssh"
|
|
|
|
|
if (-not(Test-Path "$path" -pathType container)) { throw "Your secure shell (SSH) folder at 📂$path doesn't exist (yet)" }
|
|
|
|
|
$path = Resolve-Path "$path"
|
|
|
|
|
Set-Location "$path"
|
2023-08-06 21:35:36 +02:00
|
|
|
|
"📂$Path"
|
|
|
|
|
exit 0 # success
|
2021-10-19 08:24:17 +02:00
|
|
|
|
} catch {
|
2024-10-10 14:40:19 +02:00
|
|
|
|
"⚠️ Error: $($Error[0])"
|
2021-09-12 21:52:29 +02:00
|
|
|
|
exit 1
|
2023-08-06 21:35:36 +02:00
|
|
|
|
}
|