This commit is contained in:
Marko Bauhardt 2013-04-23 19:59:33 -07:00
commit c488389767

View file

@ -0,0 +1,5 @@
function copyfile {
[[ "$#" != 1 ]] && return 1
local file_to_copy=$1
cat $file_to_copy | pbcopy
}