Você pode usar xsel
para colocar o buffer na área de transferência de displays conforme descrito aqui em stackoverflow :
The steps on Linux with
xsel
are as follows:
- Copy text from your screen session into GNU screen's copy buffer.
- Run this command within screen:
cat | xsel -b
- If
xsel
didn't report any error, now dump screen's copy buffer to STDIN:Ctrl+a+]
- Send an EOF to
cat
to terminate it:Ctrl+d
At this point, the contents of the screen copy buffer should be in your clipboard.