I'd like to do something like
dir *.* > clipboard
ie. get to get the standard output of a command line program copied to the clipboard. Can this be done on a standard XP machine without additional programs?
I'd like to do something like
dir *.* > clipboard
ie. get to get the standard output of a command line program copied to the clipboard. Can this be done on a standard XP machine without additional programs?
For Windows and non-Windows, this post (dead link) used to say:
On Windows Vista or later, try:
echo hello | clipOn Linux, try:
echo hello | xclipOn Mac OS X, try:
echo hello | pbcopyFor example, you might do
(cat myFile.txt | xclip). This would basically allow you to edit the clipboard directly.
(I came here via Google looking for the Mac equivalent of xclip)
Similarly for contents of files (as you don't cat on windows):
type filename | clip % OR clip < filename %windows cat filename | xclip # OR xclip < filename # X11 / Unix / Linux cat filename | pbcopy # OR pbcopy < filename # MacOS X
I looked into this for myself earlier today. Below is something helpful to those wanting to insert and retrieve information from the clipboard in a linux distribution. Below that is something that could prove helpful for those with windows.
By default, xclip uses the "primary" clipboard, which is what you have copied with your mouse. To get it to use the manual copy clipboard, use xclip -sel clip instead.
comment #3 here:
http://ubuntuforums.org/showthread.php?t=413786
The functionality is available in Active Perl distribution also, which is what I wound up using on the windows box in this exercise; The windows clip.exe didn't appear to allow for reading the data from the clipboard (only writing into clipboard).
Windows users can get gclip.exe as part of a big bundle of tools, which allows you to do just this.
As of Windows Vista and later DOS has a built in clip command:
CLIP
Description:
Redirects output of command line tools to the Windows clipboard.
This text output can then be pasted into other programs.
Parameter List:
/? Displays this help message.
Examples:
DIR | CLIP Places a copy of the current directory
listing into the Windows clipboard.
CLIP < README.TXT Places a copy of the text from readme.txt
on to the Windows clipboard.
If you're using cygwin on Windows (e.g. git for windows). You better dump the content into a temp file, then 'unix2dos' the temp file before really pipe to 'clip'