Skip to content

Instantly share code, notes, and snippets.

@sassdawe
Created December 13, 2020 12:45
Show Gist options
  • Save sassdawe/9c9089ff79a1fe5bdcdc4e68e689028f to your computer and use it in GitHub Desktop.
Save sassdawe/9c9089ff79a1fe5bdcdc4e68e689028f to your computer and use it in GitHub Desktop.
Clear-ClipboardContent will remove all formating from the content of your clipboard
<#
.Synopsis
Clear-ClipboardContent
.DESCRIPTION
Clear-ClipboardContent will remove all formating from the content of your clipboard
#>
function Clear-ClipboardContent {
[CmdletBinding()]
[Alias("ccc")]
Param()
Get-Clipboard | clip
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment