Skip to content

Latest commit

 

History

History
81 lines (59 loc) · 1.91 KB

README.md

File metadata and controls

81 lines (59 loc) · 1.91 KB

Copy-Passed

A remote clipboard application


site


Features

  • pipe into command to copy
  • use command to paste
  • copy globally from local clipboard
  • save to local clipboard on global copy
  • select in history what to paste
  • access groups clipboard
  • print a barcode or a QR code for authentication with app

linked projects

Firebase hosting website

Native console access

Android app


explanations

This app allows users to copy paste text cross platforms as long as they have internet.

This app can be used to by piping into and out of the command on any platform, it will also add the content to the computers clipboard (if available). note that local clipboard is not available from wsl

$ goboard -h
 Usage: [PIPE IN] goboard [OPTION]
 Copy Paste across multiple interfaces

 Available Options:
   -h, --help                Display this help message and exit
   -c, --clipboard           Copy from the computers clipboard instead of stdin
   -r, --re-authenticate     Revoke token registered to computer and register new
                              one
   -s, --save                Save the output of the global clipboard to the local
                              one

 By default, goboard copys from stdin and pastes to stdout. Use the -c and -s options to override.
$ echo 12 | goboard
$
$ goboard
12

Install

Installing GO

All platforms:

go get -u github.com/ocular-data/copy-passed-go/cmd/goboard

You might also have to add the go bin directory to your path

On Linux and OSX:

$  export PATH=$HOME/go/bin:$PATH

Inspired by atotto/clipboard