Clip


Applies To: Windows Server 2008,Windows Vista

Redirects command output from the command line to the Windows clipboard. You can then paste this text output into other programs.

For examples of how to use this command, see Examples.

Syntax


Copy Code

<Command> | clip
clip < <FileName>

Parameters

Parameter

Description

<Command>

Specifies a command whose output you want to send to the Windows Clipboard.

<FileName>

Specifies a file whose contents you want to send to the Windows Clipboard.

/?

Displays help at the command prompt.

Remarks

You can use the clip command to copy data directly into any application that can receive text from the Clipboard.

Examples

To copy the current directory listing to the Windows clipboard, type:


Copy Code

dir | clip

To copy the output of a program called Generic.awk to the Windows Clipboard, type:


Copy Code

awk -f generic.awk input.txt | clip

To copy the contents of a file called Readme.txt to the Windows Clipboard, type:


Copy Code

clip < readme.txt

Additional references

Command-Line Syntax Key