web-dev-qa-db-ja.com

ファイルをクリップボードにコピーするためのコマンドラインツールがcygwinにありますか?

私はこのようなことをしたいです:

  • コマンドラインで、ファイルをWindowsクリップボードにコピーします
  • Windowsエクスプローラーで、ファイルを現在の場所に貼り付けます

Cygwinまたは他の場所でこれを行うための簡単なツールはありますか?

5
K Robinson

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.
6
Nicole Hamilton

私はこのツールhttps://github.com/roryyorke/picellifを使用しています。これはWindowsのコマンドラインツールです。 CygwinのPATHに入れてください。私は実際に.bashrcでこのようにwinptyと一緒に使用しています

alias cf='winpty picellif'

0
John Chain