Compress and tarball files, and pipe the output into base64 which will get dumped to your terminal.
tar -czf - ./filesyouwant* | base64
Copy only the base64 output characters into your host's clipboard.
cat | base64 -d | tar -xzf -
Compress and tarball files, and pipe the output into base64 which will get dumped to your terminal.
tar -czf - ./filesyouwant* | base64
Copy only the base64 output characters into your host's clipboard.
cat | base64 -d | tar -xzf -