Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > 0d00eed538fdcf0b8d137f63978967ed > files > 5

xdotool-2.20101012.3049-1.fc14.x86_64.rpm

#!/bin/sh
# Activate firefox and paste the clipboard contents into the url bar.

wid=`xdotool search --title "Mozilla Firefox"`
xdotool windowactivate $wid
sleep 0.2
xdotool key "ctrl+j"
xdotool key "BackSpace"
xdotool key "ctrl+v"
xdotool key "Return"