सिस्टम क्लिपबोर्ड सामग्री को bash में प्रिंट करें


10

सिस्टम क्लिपबोर्ड के माध्यम से कुछ कमांड आउटपुट डालने का एक तरीका है xclip

some-command | xclip -selection clipboard

मैं एक रिवर्स टास्क करना चाहूंगा - प्रिंट सिस्टम क्लिपबोर्ड टू टर्मिनल। यह कैसे किया जा सकता है?


डुप्लिकेट नहीं है, लेकिन निश्चित रूप से संबंधित है, यह सवाल है और विशेष रूप से दिए गए उत्तर
बनंगुइन

जवाबों:


8

मैनपेज के अनुसार विपरीत दिशा में डेटा -oको बदलने का विकल्प 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)

आपके उपरोक्त आदेश में, -iमान लिया जा रहा है।


7

एक अन्य विकल्प xselकार्यक्रम है:

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.

तो, बस क्लिपबोर्ड पर कुछ कॉपी करें और xselइसे टर्मिनल पर प्रिंट करने के लिए चलाएं । आप man xselअधिक उन्नत विकल्पों के माध्यम से पढ़ सकते हैं जैसे कि क्लिपबोर्ड का उपयोग किया जाना चाहिए आदि।


5
चीजों को सरल बनाने के लिए ... यह वही है जो मैं करता alias pbcopy='xsel --clipboard --input'; alias pbpaste='xsel --clipboard --output' हूं : मैंने मैकओएस कमांड से मिलान करने के लिए नामों को चुना।
बनगुंगिन
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.