“файл командной трубы CMD в буфер обмена” Ответ

файл командной трубы CMD в буфер обмена

type filename | clip  % OR clip < filename   %windows
cat filename | xclip  # OR xclip < filename  # X11 / Unix / Linux
cat filename | pbcopy # OR pbcopy < filename # MacOS X
Evil Eagle

файл командной трубы CMD в буфер обмена

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.
Evil Eagle

Ответы похожие на “файл командной трубы CMD в буфер обмена”

Вопросы похожие на “файл командной трубы CMD в буфер обмена”

Больше похожих ответов на “файл командной трубы CMD в буфер обмена” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования