mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
9 lines
125 B
Bash
9 lines
125 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
trap exit SIGTERM SIGINT
|
||
|
|
||
|
while true
|
||
|
do
|
||
|
socat -u PIPE:$HOME/.elinks/clipboard.fifo EXEC:"xclip -sel clip"
|
||
|
done
|