About 53 results
Open links in new tab
  1. How can I copy the output of a command directly into my clipboard?

    May 25, 2017 · How can I pipe the output of a command into my clipboard and paste it back when using a terminal? For instance: cat file | clipboard

  2. How can I make Vim paste from (and copy to) the system's clipboard?

    Unlike other editors, Vim stores copied text in its own clipboard. So, it's very hard for me to copy some text from a webpage and paste it into the current working file. It so happens I have to eit...

  3. How can you get the clipboard contents with a Windows command?

    Get-Clipboard > myfile.txt The advantage of this method is that you have nothing to install. Note: In place of clip you can use Set-Clipboard that has more options. Note 2: If you really want to run it from …

  4. vim - Copy all the lines to clipboard - Stack Overflow

    Oct 25, 2009 · Is there any way to copy all lines from open file to clipboard in VI editor. I tried yG but it's not using clipboard to store those lines. So is it possible?

  5. Access clipboard in Windows batch file - Stack Overflow

    Jul 30, 2012 · I want to be able to highlight text from a web browser, copy it to the clipboard, then run a batch file that parses the clipboard text, formats it, then adds the formatted text to a specific file …

  6. batch file - Copy text from a Windows CMD window to clipboard

    Jul 18, 2012 · Does anyone know if it's possible to copy text from a Windows' command prompt or console window like the output of a command, console application or batch file?

  7. Pipe to/from the clipboard in a Bash script - Stack Overflow

    Is it possible to pipe to/from the clipboard in Bash? Whether it is piping to/from a device handle or using an auxiliary application, I can't find anything. For example, if /dev/clip was a device l...

  8. Yank file name / path of current buffer in Vim - Stack Overflow

    May 27, 2009 · Combining information from a couple of other answers: If you want to yank the current full path to a file and put it into the command buffer in another window, first do :let @" = …

  9. Excel VBA code to copy a specific string to clipboard

    I'm trying to add a button to a spreadsheet that when clicked will copy a specific URL to my clipboard. I had a bit of knowledge of Excel VBA but it's been a while and I'm struggling.

  10. How do i use Get-clipboard output in a powershell script?

    In Windows PowerShell, if you've used File Explorer to copy a directory to the clipboard (using the regular Copy shortcut-menu command or the Ctrl+C keyboard shortcut), you can access it as …