comparison unixSoft/bin/afcopy @ 409:b5178986dcbb

af{copy,paste}: scripts so I can copy/paste with pipes across platforms
author Augie Fackler <raf@durin42.com>
date Thu, 04 Aug 2016 10:10:09 -0400
parents
children 4c5814d3cfd8
comparison
equal deleted inserted replaced
408:8571fe484690 409:b5178986dcbb
1 #!/bin/sh
2 if [ `uname` = Darwin ] ; then
3 pbcopy
4 else
5 xclip -selection clipboard
6 fi