TIL: you can pipe to clipboard

RobertKaucherRobertKaucher Member Posts: 4,299 ■■■■■■■■■■
I consider myself well-versed in the Windows command line and PowerShell, but today I learned that you can pipe commands to a little known application called clip that puts the output into the clipboard.
C:\Users\rkaucher>ipconfig | clip
Or in PowerShell
PS C:\Windows\system32> Get-ChildItem | clip

Wow. I wish I had known this 4 years ago...

Comments

Sign In or Register to comment.