diff --git a/README.md b/README.md index b42506c..57b4679 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,7 @@ Here's a list of the most interesting ones, along with what they do and where th - setclip - Sets the clipboard to the contents of the standard input - getclip - Sends the current clipboard contents out of the standard output - listenclip - Listens on localhost:5556 and pipes any data recieved into the clipboard. Make sure you're firewall is working correctly! + - sendclip - Pipes stdin to localhost:5556. Useful in conjuntion with ssh port forwarding and the tool above. - [shellshare](https://shellshare.net/) - A live terminal broadcasting utility. - [colortrans](https://gist.github.com/MicahElliott/719710) - Convert rgb colours to xterm ones diff --git a/sendclip b/sendclip new file mode 100755 index 0000000..08af1c3 --- /dev/null +++ b/sendclip @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +netcat localhost 5556