mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-05 06:25:00 +00:00
8 lines
107 B
Bash
Executable file
8 lines
107 B
Bash
Executable file
#!/bin/bash
|
|
if [ $# -eq 0 ]
|
|
then
|
|
cat - | xclip -i -sel clip
|
|
else
|
|
echo $@ | xclip -i -sel clip
|
|
fi
|