web-dev-qa-db-ja.com

bashスクリプトのループでexpectスクリプトを呼び出す

期待スクリプトを通じてサイトのリストをループしようとしています。ループは私のリストを取得して1行ずつ読み取り、ディレクトリをサイト名のフォルダーに変更してから、サイト名を期待されるスクリプトに渡します。

Bashスクリプト:

#!/bin/bash
sites="/home/user/sites.cfg"

while read site; do
  cd /home/user/$site
  pwd
  echo $site
  ./base.sh
done < $sites

期待スクリプト:

#!/usr/bin/expect

set site [lindex $argv 0]
set timeout 3

logfile services
spawn ssh -oStrictHostKeyChecking=no -oCheckHostIP=no -oUserKnownHostsFile=/dev/null user@$site
expect "password" { send mypassword\r }
expect "#"
send environment\ no\ more\n
expect "#"
send show\ service\ service-using\n
expect "#"
send logout\n

結果:

user@myserver:~$ sh show-database.sh
/home/user/site-01
site-01
show-database.sh: 11: show-database.sh: ./base.sh: not found
/home/user/site-02
site-02
show-database.sh: 11: show-database.sh: ./base.sh: not found

各サイトの各フォルダにservicesというファイルが表示されることを期待しています。私は以下を実行でき、CLIから動作しますが、ディレクトリを切り替えません。これは、はるかに大きなスクリプトのほんの始まりにすぎません。ループ内で実行する必要があることがいくつかあります。とりあえず、これは私がテスト用に持っているものです。

./base.sh site-01

ありがとう!

4
Pi4All

これにはbashラッパースクリプトはまったく必要ありません。すべてを処理できます。

#!/usr/bin/expect
set timeout 3

set rootdir /home/user
set sites [file join $rootdir sites.cfg]
set fh [open $sites r]

while {[gets $fh site] != -1} {
    set dir [file join $rootdir $site]
    if { ! [file isdirectory $dir]} {
        puts "*** error: $dir does not exist"
        continue
    } 

    cd $dir
    puts [pwd]
    puts $site

    log_file services

    spawn ssh -oStrictHostKeyChecking=no -oCheckHostIP=no -oUserKnownHostsFile=/dev/null user@$site
    expect "password" 
    send "mypassword\r 
    expect "#"
    send "environment no more\r"
    expect "#"
    send "show service service-using\r"
    expect "#"
    send "logout\r"
    expect eof

    log_file
}
5
glenn jackman