Sophie

Sophie

distrib > Fedora > 13 > i386 > media > os > by-pkgid > ab77d3a9c79df238d83a447f518b8462 > files > 4

xdotool-1.20100227.2679-1.fc13.i686.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"