mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-09 05:04:39 +02:00
Updated the manuals
This commit is contained in:
64
docs/list-ssh-key.md
Normal file
64
docs/list-ssh-key.md
Normal file
@ -0,0 +1,64 @@
|
||||
Script: *list-ssh-key.ps1*
|
||||
========================
|
||||
|
||||
This PowerShell script lists the user's public SSH key.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/home/markus/Repos/PowerShell/scripts/list-ssh-key.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./list-ssh-key.ps1
|
||||
|
||||
```
|
||||
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Lists the public SSH key
|
||||
.DESCRIPTION
|
||||
This PowerShell script lists the user's public SSH key.
|
||||
.EXAMPLE
|
||||
PS> ./list-ssh-key.ps1
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
.NOTES
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
#>
|
||||
|
||||
try {
|
||||
if (Test-Path "~/.ssh/id_ed25519.pub") {
|
||||
$key = Get-Content "~/.ssh/id_ed25519.pub"
|
||||
} elseif (Test-Path "~/.ssh/id_rsa.pub") {
|
||||
$key = Get-Content "~/.ssh/id_rsa.pub"
|
||||
} else {
|
||||
"⚠️ No SSH key found - execute 'new-ssh-key.ps1' to create one"
|
||||
exit 1
|
||||
}
|
||||
"✅ Public SSH key: $key"
|
||||
exit 0 # success
|
||||
} catch {
|
||||
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||
exit 1
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of list-ssh-key.ps1 as of 11/08/2024 12:34:51)*
|
Reference in New Issue
Block a user