1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-07 16:00:41 +01:00

Merge pull request #1702 from mbauhardt/copyfile

a plugin (function) which copies the content of a file into the clipboar...
This commit is contained in:
Robby Russell
2013-04-23 19:59:51 -07:00

View File

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