mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 06:22:56 +00:00
8 lines
148 B
Fish
8 lines
148 B
Fish
|
#!/usr/local/bin/fish
|
||
|
|
||
|
function mactools
|
||
|
function copy --description 'Copy file contents into clipboard'
|
||
|
cat $argv | pbcopy
|
||
|
end
|
||
|
end
|