Sistem panosu içeriğini bash biçiminde yazdırma


Yanıtlar:


8

El kitabına göre, verileri ters yönde itme -oseçeneği xclip:

   -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)

Yukarıdaki komutunuzda, -ivarsayılmaktadır.


7

Başka bir seçenek xselprogramdır:

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.

Yani, bir şeyi panoya kopyalayın xselve terminale yazdırmak için çalıştırın . man xselHangi panonun kullanılması gerektiği gibi daha gelişmiş seçenekler için bir okumaya sahip olabilirsiniz .


5
İşleri basitleştirmek için ... Yaptığım şey bu: alias pbcopy='xsel --clipboard --input'; alias pbpaste='xsel --clipboard --output' MacOS komutlarıyla eşleştirmek için isimleri seçtim.
Bananguin
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.