8 lines
249 B
Bash
Executable file
8 lines
249 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
xclip -selection primary
|
|
xclip -selection primary -out | xclip -selection clipboard
|
|
xclip -selection primary -out | xclip -selection secondary
|
|
echo "Your input was stored in all clipboards."
|
|
sleep 5 && killall xclip &>/dev/null &
|