0

想要在启用了 firebug 的 linux 终端上打开 firefox

// Terminal 
$ Firefox 
4

1 回答 1

2

您可以使用xdotool

#!/bin/bash
wid=$(xdotool search 'mozilla firefox' | head -1)
xdotool windowactivate $wid
xdotool key F12
于 2012-06-13T14:31:34.927 回答