Hi guys,
Simple PowerShell question; If I want to copy a multi-line set of data to the clipboard, what is the best way to do it?
I have the below at the moment, which successfully copies the data between the braces, however the variable $testing is literally copied as "$testing", and not as "blabla".
Any better way of doing this?
Thanks.
$testing = "blabla"
{Testing 1
Testing 2
Testing 3
$testing
etc } | clip