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.
これはスクリプトです:
#!/usr/bin/expect set a1 "aaa" set a2 "bbb" set a3 "ccc" for {set b 1} {$b<4} {incr b} { set c \$a$b send $c }
出力:
$a1$a2$a3
私は複製することを望んでいた
send $a1 send $a2 send $a3
出力は
ああbbbccc
それでもそうではありません。