9 lines
100 B
Plaintext
9 lines
100 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
for (( i=1; i<4; i++ )); do
|
||
|
echo $i
|
||
|
sleep 1
|
||
|
done
|
||
|
echo "Go!"
|
||
|
xdotool type $(xclip -o)
|