Project

copypaste

0.0
No commit activity in last 3 years
No release in over 3 years
CopyPaste provides rcopy, rcut, rpaste unix tools that interact with a central queue server through the memcached protocol
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 0.3.2
>= 0.10.1
 Project Readme
== Welcome to CopyPaste

CopyPaste provides rcopy, rcut, rpaste unix tools that interact with a central queue server through the memcached protocol

== Download

* gem install copypaste
* http://github.com/cardmagic/copypaste

== Usage

    echo "hello world" | rcut # does not print anything, copies data into default buffer
    rpaste # prints hello world

    echo "hello world" | rcopy mybuf # prints hello world, copies into mybuf buffer
    rpaste mybuf # prints hello world

    rpaste somebuf && printf '\a' # waits for data in somebuf, then makes the terminal beep
    echo "woot" | rcut somebuf # prints woot in the other terminal and then the other terminal beeps

    cat some_binary | gzip - | rcopy mybuf # poor man's insecure file copy
    rpaste mybuf | gunzip - > some_binary

== Authors    
* Lucas Carlson (mailto:lucas@rufy.com)

This library is released under the terms of the BSD.