4

我正在编写一个脚本来自动化工作环境准备。我需要打开 4 个终端窗口,排列它们并在每个窗口中执行命令。

它有效,但有时我会遇到令人讨厌的失败 -xdotool type 随机重复一些字符

rvm use ruby-1.99999999999999999999999999999999.3-p194@ro && rails c
~/my_src/ruby_apps/ro > rvm use ruby-1.99999999999999999999999999999999.3-p194@ro && rails c
ruby-1.99999999999999999999999999999999.3-p194 is not installed.
To install do: 'rvm install ruby-1.99999999999999999999999999999999.3-p194'
~/my_src/ruby_apps/ro > 

或在另一个窗口中:

tail -fn 100 looooooog/thin.0.log
~/my_src/ruby_apps/ro > tail -fn 100 looooooog/thin.0.log
tail: could not open «looooooog/thin.0.log» for reading: No such file or directory
tail: no more files
~/my_src/ruby_apps/ro > 

我想这取决于 CPU 负载,因为我有非常大的 .bashrc 由 ATOM 处理,并且在脚本处理期间它的负载很高。

我在脚本中使用waitsleep和特殊顺序的open_lxterminal_execute_hold()函数调用来首先执行简单的简单命令。这可以最大限度地减少错误,但根本不会阻止它们。

无论 CPU 负载如何(无论如何),你会建议什么来获得稳定的结果?摆脱sleeps 也很棒。

#!/bin/bash
#
# prepares work environment for rails project

# Opens lxterminal with title if windows with such title
#   doesn't exist, executes command and stays open. 
#   Otherwise does nothing.
#
function open_lxterminal_execute_hold(){
  local winid=`xwininfo -name $title 2>/dev/null |grep 'Window id:' |cut -d" " -f4`
  if [ -n "$winid" ]; then
    echo "Window for title '$title' exists with '$winid'"
  else
    lxterminal -t $title 
    sleep 1
    wmctrl -i -a "$winid" # bring the window to front, activate
    wait
    xdotool type "$command"
    wait
    xdotool key Return # run the command
    wait
  fi
}

pkill devilspie
cd ~/my_src/ruby_apps/ro # TODO param
title='rails-commandline';     command='ls';                                    open_lxterminal_execute_hold
title='rails-development.log'; command='tail -fn 100 log/development.log';      open_lxterminal_execute_hold
title='rails-user_case';       command='tail -fn 100 log/thin.0.log';           open_lxterminal_execute_hold
sleep 5
title='rails-console';         command='rvm use ruby-1.9.3-p194@ro && rails c'; open_lxterminal_execute_hold
/usr/bin/devilspie -a 2>/dev/null & # arrange windows

更新 如何防止 xdotool 重复字符?

4

4 回答 4

2

这是一个完全避免 xdotool 的解决方法。从积极的方面来说,我认为这相当简单。不利的一面是,它似乎不适用于 lxterminal——尽管它确实适用于其他终端,例如 xterm 和 gnome-terminal。

对于它的价值,这是一个想法:

让 bashrc 根据title环境变量的值运行相应的命令:

您可以通过在 .bashrc 中添加以下内容来实现:

case "$title" in
rails-development.log)
    ls
    ;;
rails-commandline)
    tail -fn 100 /var/log/syslog
    ;;
*)
    ;;
esac

然后在你的脚本中你可以使用

function open_terminal_execute_hold() {
  local winid=`xwininfo -name $title 2>/dev/null |grep 'Window id:' |cut -d" " -f4`
  if [ -n "$winid" ]; then
    echo "Window for title '$title' exists with '$winid'"
  else
    gnome-terminal -t "$title" &
  fi
}

cd /tmp # TODO param
export title='rails-commandline' &&  open_terminal_execute_hold &
export title='rails-blah' &&  open_terminal_execute_hold &
export title='rails-development.log' && open_terminal_execute_hold &

出于某种原因, lxterminal 似乎只使用第一个值title,而忽略了对其值的后续更改。

于 2012-07-20T13:13:57.067 回答
2

这是另一个解决方案,在我的 Ubuntu 11.04 系统上测试并运行:

#!/bin/bash

function open_lxterminal_execute_hold() {
  xwininfo -name $1 > /dev/null 2>&1
  if [ $? -eq 0 ]; then
    echo "Window for title '$1' already exists"
  else
    t=$(tempfile)
    echo ". ~/.bashrc" > $t
    echo "$2" >> $t
    lxterminal -t $1 -e "$SHELL --rcfile $t" &
  fi
}

#pkill devilspie
#cd ~/my_src/ruby_apps/ro
open_lxterminal_execute_hold 'rails-commandline' 'ls'
open_lxterminal_execute_hold 'rails-development' 'tail -fn 100 log/development.log'
open_lxterminal_execute_hold 'rails-user_case' 'tail -fn 100 log/thin.0.log'
#open_lxterminal_execute_hold 'rails-console' 'rvm use ruby-1.9.3-pl94@ro && rails c'
#devilspie -a 2>/dev/null &

您可能会注意到,我已经注释了一些测试行,因此您应该在系统上运行脚本之前从注释行中删除尾随的“ # ”。
我使用的技巧是在每个终端中启动一个带有“ --rcfile ”选项的新shell。
这样,就不需要使用“xdotool”、“wait”和“sleep”命令了。

于 2012-07-24T20:40:03.460 回答
0

其实我找到了另一个解决方案。我发现我使用了 ubuntu deb 包中的 2009 年的旧版本。我从源安装的最新版本xdotool允许一个新的命令行参数--delay <value>,如果与 0 一起使用,--delay 0 可以防止重复字符。所以函数现在看起来如下:

function open_lxterminal_execute_hold(){
  local winid=`xwininfo -name $title 2>/dev/null |grep 'Window id:' |cut -d" " -f4`
  if [ -n "$winid" ]; then
    echo "Window for title '$title' exists with '$winid'"
  else
    lxterminal -t "$title" 
    sleep 1
    wmctrl -i -a "$winid" 
    xdotool type --delay 0 "$command"
    xdotool key Return
  fi
}

祝大家好运!

于 2012-08-02T18:05:20.183 回答
0

您可以改用xte命令行工具。它做同样的工作,但没有随机密钥粘性。

于 2017-12-01T05:24:55.307 回答