mirror of
https://gitlab.com/linuxstuff/dotfiles.git
synced 2026-08-17 13:59:29 +02:00
8 lines
148 B
Bash
Executable File
8 lines
148 B
Bash
Executable File
# Copies the contents of a given file to the system or X Windows clipboard
|
|
#
|
|
# copyfile <file>
|
|
function copyfile {
|
|
emulate -L zsh
|
|
clipcopy $1
|
|
}
|