Skip to content

Instantly share code, notes, and snippets.

@joswr1ght
Created January 27, 2020 13:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joswr1ght/f50ea0c6f331b28e227adb820efb5c4f to your computer and use it in GitHub Desktop.
Save joswr1ght/f50ea0c6f331b28e227adb820efb5c4f to your computer and use it in GitHub Desktop.
Copy Clipboard Data from PowerShell
$x=""; while($true) { $y=get-clipboard -raw; if ($x -ne $y) { Write-Host $y; $x=$y } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment