Created
December 13, 2020 12:45
-
-
Save sassdawe/9c9089ff79a1fe5bdcdc4e68e689028f to your computer and use it in GitHub Desktop.
Clear-ClipboardContent will remove all formating from the content of your clipboard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.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