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