- 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
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
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