windows命令操作剪贴板——CLIP
使用说明
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.
简单应用
将ip地址拷贝到剪贴板
1 | ipconfig | find "IPv4" | find /V "自动" | find /V "Auto" | awk "{ print $(NF);}" | CLIP |
也可以添加一个alias,这样就不用每次敲ipconfig
, 然后复制ip了