PowerShell/scripts/list-ssh-key.ps1

29 lines
720 B
PowerShell
Raw Normal View History

2024-10-01 15:11:03 +02:00
<#
2024-09-14 15:12:53 +02:00
.SYNOPSIS
2024-10-15 08:45:21 +02:00
Lists the public SSH key
2024-09-14 15:12:53 +02:00
.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") {
2024-10-15 08:45:21 +02:00
$key = Get-Content "~/.ssh/id_rsa.pub"
2024-09-14 15:12:53 +02:00
} else {
2024-10-15 08:45:21 +02:00
"⚠️ No SSH key found - execute 'new-ssh-key.ps1' to create one"
exit 1
2024-09-14 15:12:53 +02:00
}
2024-10-15 08:45:21 +02:00
"✅ Public SSH key: $key"
2024-09-14 15:12:53 +02:00
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}