Commit 1235b77e authored by Robby Russell's avatar Robby Russell
Browse files

Merge pull request #1702 from mbauhardt/copyfile

a plugin (function) which copies the content of a file into the clipboar...
parents 42127bee 0854b18c
function copyfile {
[[ "$#" != 1 ]] && return 1
local file_to_copy=$1
cat $file_to_copy | pbcopy
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment