Skip to content

saucesteals/clip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

clip

A simple and robust clipboard manager

Clip is currently ONLY for macos and windows (as it's what I use and can actively test on). Requests ( and PRs ;) ) for other platforms are welcome!

Usage

  • Copying
echo "foo" | clip copy
cat ./foo.bar | clip copy
  • Pasting
clip paste
clip paste > ./test
  • Posting (posts stdin to paste.rs)
echo "foo" | clip post
cat ./foo.bar | clip post

Installation

Github

  • Grab a release directly from Github Releases
  • Move it to a proper location (ex. /usr/local/bin)
  • If your shell cant find clip, add the location to $PATH

Manual


Prerequisites


  • Pull clip from the repo
go get -d github.com/saucesteals/clip
  • Build the clip binary
go install github.com/saucesteals/clip/cmd/clip