Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
想要在启用了 firebug 的 linux 终端上打开 firefox
// Terminal $ Firefox
您可以使用xdotool:
xdotool
#!/bin/bash wid=$(xdotool search 'mozilla firefox' | head -1) xdotool windowactivate $wid xdotool key F12