Cetak konten clipboard sistem dalam bash


Jawaban:


8

Menurut halaman manual -oopsi untuk xclipmendorong data dalam arah yang berlawanan:

   -i, -in
          read text into X selection from standard input or files (default)

   -o, -out
          prints the selection to standard out (generally for piping to a file or program)

Dalam perintah Anda di atas, -isedang diasumsikan.


7

Pilihan lain adalah xselprogram:

By default, this program outputs the selection without modification  if
   both  standard  input  and standard output are terminals (ttys). Other
   wise, the current selection is output if standard output is not a  ter
   minal  (tty),  and the selection is set from standard input if standard
   input is not a terminal (tty). If any input or output options are given
   then the program behaves only in the requested mode.

Jadi, cukup salin sesuatu ke clipboard dan jalankan xseluntuk mencetaknya ke terminal. Anda dapat membaca man xselopsi lebih lanjut seperti clipboard mana yang harus digunakan dll.


5
Untuk mempermudah, ini yang saya lakukan: alias pbcopy='xsel --clipboard --input'; alias pbpaste='xsel --clipboard --output' Saya memilih nama yang cocok dengan perintah MacOS.
Bananguin
Dengan menggunakan situs kami, Anda mengakui telah membaca dan memahami Kebijakan Cookie dan Kebijakan Privasi kami.
Licensed under cc by-sa 3.0 with attribution required.