Newer
Older
zsh_settings / .zsh_plugins / copyfile / copyfile.plugin.zsh
@aoi1049 aoi1049 on 5 Feb 2019 105 bytes first commit.
function copyfile {
  [[ "$#" != 1 ]] && return 1
  local file_to_copy=$1
  cat $file_to_copy | pbcopy
}