Access your local clipboard from remote shells

3 weeks ago 1

remoclip (remote clipboard) is a small tool for providing copy and paste clipboard functionality in the CLI - with a special emphasis on allowing access to your local machine's clipboard when connected to remote systems. The package provides two CLI scripts: remoclip_server and remoclip.

remoclip relies on the pyperclip package to interface with the local clipboard on Linux, Mac, and Windows.

See the full documentation at remoclip.newmatter.net.

Install with uv or pip:

$ uv tool install remoclip # alternative: # pip install remoclip

Create a security token (optional but highly recommended):

TOKEN=$(python3 -c "import secrets; print(secrets.token_hex(32))") echo "security_token: $TOKEN" > ~/.remoclip.yaml

Run the server:

In a new shell, access your local clipboard:

$ echo Hello from remoclip. | remoclip copy Hello from remoclip. $ remoclip paste Hello from remoclip.

Add --strip (or -s) to remoclip copy when you want to remove trailing newline characters from the piped input before it reaches the clipboard.

Connect to a remote system:

# first copy the config file so the remote client uses the security token $ scp ~/.remoclip.yaml user@myremotehost:~ # remoclip's default port is 35612 $ ssh -R 35612:127.0.0.1:35612 user@myremotehost user@myremotehost$ uv tool install remoclip user@myremotehost$ remoclip paste Hello from remoclip. user@myremotehost$ echo Hello from $(hostname) | remoclip copy Hello from myremotehost

Now, back on your local system, paste the contents of your clipboard somewhere. It should contain:

You can also use remoclip paste (or remoclip p) and remoclip copy (or remoclip c) locally, similar to the macOS pbcopy and pbpaste commands, and they will manipulate the local clipboard as expected (via interactions with the server).

If you want to avoid exposing a port on the remote system, Unix domain sockets are also supported:

$ echo "Hello from my local machine." | remoclip copy Hello from my local machine. $ ssh -R /tmp/remoclip.sock:127.0.0.1:35612 user@myremotehost user@myremotehost$ echo -e "\nclient:\n\tsocket: /tmp/remoclip.sock" >> ~/.remoclip.yaml user@myremotehost$ remoclip paste Hello from my local machine.

Unfortunately, SSH does not automatically clean up the socket file when you disconnect your session. You'll need to delete it manually before you initiate a new connection with the same socket:

$ ssh user@myremote rm /tmp/remoclip-user.sock $ ssh -R /tmp/remoclip-user.sock:127.0.0.1:35612 user@myremotehost
Read Entire Article