Wydrukuj zawartość schowka systemowego w bash


Odpowiedzi:


8

Według strony podręcznej -oopcja xclipprzesuwania danych w przeciwnym kierunku:

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

W twoim powyższym poleceniu -izakłada się.


7

Innym wyborem jest 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.

Więc po prostu skopiuj coś do schowka i uruchom, xselaby wydrukować to na terminalu. Możesz przeczytać man xselwięcej zaawansowanych opcji, takich jak który schowek powinien zostać użyty itp.


5
Aby uprościć ... to właśnie robię: alias pbcopy='xsel --clipboard --input'; alias pbpaste='xsel --clipboard --output' wybrałem nazwy pasujące do poleceń MacOS.
Bananguin,
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.