标签: linux firefox terminal firebug
想要在启用了firebug的linux上从终端打开firefox
// Terminal $ Firefox
答案 0 :(得分:2)
您可以使用xdotool:
xdotool
#!/bin/bash wid=$(xdotool search 'mozilla firefox' | head -1) xdotool windowactivate $wid xdotool key F12