1 2 3 4 5 6 7
#!/bin/bash TERMAPP="Terminator" for wid in $(xdotool search --onlyvisible --sync --all --class ${TERMAPP}) do xdotool type --window $wid "$*" xdotool key --window $wid KP_Enter done