Stampa il contenuto degli appunti di sistema in bash


Risposte:


8

Secondo la manpage l' -oopzione di xclipspingere i dati nella direzione opposta:

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

Nel comando precedente, -isi assume che.


7

Un'altra scelta è il xselprogramma:

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.

Quindi, copia qualcosa negli appunti ed eseguilo xselper stamparlo sul terminale. Puoi leggere man xselle opzioni più avanzate come gli appunti da usare, ecc.


5
Per semplificare le cose ... questo è quello che faccio: alias pbcopy='xsel --clipboard --input'; alias pbpaste='xsel --clipboard --output' ho scelto i nomi per abbinare i comandi di MacOS.
Bananguin,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.