Tagged Questions
3
votes
1answer
140 views
Is there a command line tool in cygwin to copy a file to the clipboard?
I'd like to do something like this:
On the command line, copy a file to the Windows clipboard
In Windows Explorer, paste the file/files into a current location
Is there a simple tool to do this, ...
2
votes
1answer
517 views
How to output batch command to null
@echo off
mode con:cols=40 lines=2
echo BJNNAHQT4YRV57GITREWQ88|clip
cls
echo Wireless Password copied to clipboard.
timeout 2 > NULL
How do I make timeout not print any text?
2
votes
1answer
155 views
Pasting into Vista console windows broke, why?
I use Windows Vista x64 and regularly use command line windows, for instance CMD.EXE. I have enabled QuickEdit Mode (and Insert Mode and AutoComplete), to be able to quickly copy and paste text from ...
0
votes
1answer
361 views
How can I load an image directly into the Windows clipboard from the command line?
My dad asked me how he could script the pasting/inclusion of images in various applications. I'm sure I could script out some quick <img src=... HTML but I believe he's also looking to do this in ...
1
vote
2answers
706 views
Clipboard integration with GNU Screen and Mac OS X Terminal
I am using GNU Screen on Terminal. Is there a way to use what I copied in GNU Screen
into OS X's clipboard? I'm running
Mac OS X 10.6.2
Screen version 4.00.03 (FAU) 23-Oct-06
Edit: I was thinking ...
10
votes
6answers
3k views
How to pipe text from command line to the clipboard
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 ...
10
votes
3answers
8k views
Keyboard shortcut to paste in Windows command prompt
Is there a keyboard shortcut to paste in the Windows command prompt (or at least powershell)?
I'm aware that you can right click, but it would be handy if it was possible without touching the mouse.
9
votes
2answers
86 views
Is it possible to send the contents of a text file to the clipboard from the command line in OS X?
I've found myself needing to do this a couple of times lately and wondered if there was a way to do this in the OS already. Failing that, I've got a pretty good idea of how to write a script to do it, ...