Changes between Version 6 and Version 7 of Clipboard
- Timestamp:
- 03/04/13 09:21:25 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Clipboard
v6 v7 19 19 20 20 The easiest way to test the clipboard is to use {{{xclip}}} to set and verify the contents of each clipboard: 21 * To set the "primary" clipboard contents to the string "_primary_": 21 22 {{{ 22 23 echo _primary_ | xclip -i -selection primary 23 24 }}} 24 To set the "primary" clipboard contents to the string "_primary_". 25 * To print the contents of the "primary" clipboard: 25 26 {{{ 26 27 xclip -o -selection primary 27 28 }}} 28 To print the contents of the "primary" clipboard.29 29 30 30 Note: on win32, you will need to change the clipboard currently in use to match the one you modify, this must be done before changing the value to ensure it is propagated.