mirror of
https://github.com/sbrl/bin.git
synced 2018-01-10 21:33:46 +00:00
Add sendclip
This commit is contained in:
parent
3d8b2b6d32
commit
2e703e4fa2
2 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
3
sendclip
Executable file
3
sendclip
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
netcat localhost 5556
|
Loading…
Reference in a new issue