mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-23 10:28:23 +02:00
Add cd-ssh.ps1
This commit is contained in:
parent
8c64ceb44b
commit
439387b735
@ -13,6 +13,7 @@ cd-recycle-bin.ps1, change the working directory to the user's recycle bin folde
|
|||||||
cd-repos.ps1, change the working directory to the user's Git repositories folder
|
cd-repos.ps1, change the working directory to the user's Git repositories folder
|
||||||
cd-root.ps1, change the working directory to the root directory (C: on Windows)
|
cd-root.ps1, change the working directory to the root directory (C: on Windows)
|
||||||
cd-scripts.ps1, change the working directory to the PowerShell Scripts folder
|
cd-scripts.ps1, change the working directory to the PowerShell Scripts folder
|
||||||
|
cd-ssh.ps1, change the working directory to the user's SSH folder
|
||||||
cd-up.ps1, change the working directory to one directory level up
|
cd-up.ps1, change the working directory to one directory level up
|
||||||
cd-up2.ps1, change the working directory to two directory levels up
|
cd-up2.ps1, change the working directory to two directory levels up
|
||||||
cd-up3.ps1, change the working directory to three directory levels up
|
cd-up3.ps1, change the working directory to three directory levels up
|
||||||
|
|
@ -137,6 +137,7 @@ Mega Collection of PowerShell Scripts
|
|||||||
| [cd-repos.ps1](Scripts/cd-repos.ps1) | Change the working directory to the user's Git repositories folder | [Help](Docs/cd-repos.ps1.md) |
|
| [cd-repos.ps1](Scripts/cd-repos.ps1) | Change the working directory to the user's Git repositories folder | [Help](Docs/cd-repos.ps1.md) |
|
||||||
| [cd-root.ps1](Scripts/cd-root.ps1) | Change the working directory to the root directory (C:\ on Windows)| [Help](Docs/cd-root.ps1.md) |
|
| [cd-root.ps1](Scripts/cd-root.ps1) | Change the working directory to the root directory (C:\ on Windows)| [Help](Docs/cd-root.ps1.md) |
|
||||||
| [cd-scripts.ps1](Scripts/cd-scripts.ps1) | Change the working directory to the PowerShell Scripts folder | [Help](Docs/cd-scripts.ps1.md) |
|
| [cd-scripts.ps1](Scripts/cd-scripts.ps1) | Change the working directory to the PowerShell Scripts folder | [Help](Docs/cd-scripts.ps1.md) |
|
||||||
|
| [cd-ssh.ps1](Scripts/cd-ssh.ps1) | Change the working directory to the user's SSH folder | [Help](Docs/cd-ssh.ps1.md) |
|
||||||
| [cd-up.ps1](Scripts/cd-up.ps1) | Change the working directory to one directory level up | [Help](Docs/cd-up.ps1.md) |
|
| [cd-up.ps1](Scripts/cd-up.ps1) | Change the working directory to one directory level up | [Help](Docs/cd-up.ps1.md) |
|
||||||
| [cd-up2.ps1](Scripts/cd-up2.ps1) | Change the working directory to two directory levels up | [Help](Docs/cd-up2.ps1.md) |
|
| [cd-up2.ps1](Scripts/cd-up2.ps1) | Change the working directory to two directory levels up | [Help](Docs/cd-up2.ps1.md) |
|
||||||
| [cd-up3.ps1](Scripts/cd-up3.ps1) | Change the working directory to three directory levels up | [Help](Docs/cd-up3.ps1.md) |
|
| [cd-up3.ps1](Scripts/cd-up3.ps1) | Change the working directory to three directory levels up | [Help](Docs/cd-up3.ps1.md) |
|
||||||
|
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
|
Loading…
Reference in New Issue
Block a user