http://www.petri.co.il/software/clip.zip 참고
-Petri의 링크는 현재 다운되었습니다. 그는 Windows Server 2003에서 가져 왔지만 Windows 7에서도 clip.exe가 보입니다. Windows 버전도 Windows 7을 게시합니다.
C:\>echo abc| clip <-- copies abc to the clipboard.
편집
중요한 것은 클립 명령이지만 Asu가 지적한 것처럼 같은 줄 echo abc
은 \ r \ n (새 줄)을 보냅니다. 당신이를 피하고 싶은 경우에, 그 대체하여 해결 매우 표준 문제입니다 echo texttoecho
으로, echo|set/p=texttoecho
그래서C:\>echo|set/p=texttoecho|clip
추가 추가
물론 마우스 오른쪽 버튼을 클릭하여 붙여 넣을 수 있지만 명령 줄 붙여 넣기도 가능합니다.
unxutils (10 년 이상 유지되지 않은 고대)에는 gclip 및 pclip (gnuwin32에는없는 것 같음)이 있으며 명령 줄을 통해 복사하여 붙여 넣을 수 있습니다.
gnuwin32도 업데이트되지 않았을 수 있습니다.
C:\unxutilsblah\usr\local\wbin>echo a|gclip <-- copy a to clipboard
C:\unxutilsblah\usr\local\wbin>pclip
a
C:\unxutilsblah\usr\local\wbin>
참고-모든 wbin을 예를 들어에 복사 할 수 c:\unxutils
있으며 EXE에는 종속성 / dll이 없습니다.
물론 pclip> aa를 사용하여 파일에 붙여 넣을 수 있습니다. 또는 pclip | somecmd
C:\>(echo b & echo a)<ENTER>
b
a
C:\>
C:\unxutils>(echo b & echo a)|gclip<ENTER>
C:\unxutils>pclip<ENTER>
b
a
C:\unxutils>pclip|sort<ENTER>
a
b
C:\unxutils>