2015-08-17 19:53:45 -07:00
|
|
|
# Copies the contents of a given file to the system or X Windows clipboard
|
|
|
|
#
|
|
|
|
# copyfile <file>
|
2013-04-08 13:32:00 -07:00
|
|
|
function copyfile {
|
2015-08-17 19:53:45 -07:00
|
|
|
emulate -L zsh
|
|
|
|
clipcopy $1
|
2013-04-08 13:32:00 -07:00
|
|
|
}
|