PowerShell/Scripts/list-clipboard.ps1
2022-01-29 12:47:46 +01:00

21 lines
428 B
PowerShell
Executable File

<#
.SYNOPSIS
Lists the contents of the clipboard
.DESCRIPTION
This PowerShell script lists the contents of the clipboard.
.EXAMPLE
PS> ./list-clipboard
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#>
try {
"📋 $(get-clipboard)"
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}