Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
1235b77effa13dbb12de7056f8c73f7f820c061b
1235b77effa13dbb12de7056f8c73f7f820c061b
Switch branch/tag
oh-my-zsh
plugins
copyfile
copyfile.plugin.zsh
Find file
Normal view
History
Permalink
copyfile.plugin.zsh
105 Bytes
Edit
Web IDE
Newer
Older
a plugin (function) which copies the content of a file into the clipboard
Marko Bauhardt
committed
Apr 08, 2013
1
2
3
4
5
function
copyfile
{
[[
"$#"
!=
1
]]
&&
return
1
local
file_to_copy
=
$1
cat
$file_to_copy
| pbcopy
}