回答編集履歴

1

expectのサンプル

2016/09/03 12:13

投稿

otn
otn

スコア84676

test CHANGED
@@ -5,3 +5,23 @@
5
5
  ```
6
6
 
7
7
  これで出来なかったら、expectというコマンドを使う必要があります。
8
+
9
+ ```Bash
10
+
11
+ expect -c "
12
+
13
+ spawn xxxregistry
14
+
15
+ expect \"name: \"
16
+
17
+ send \"hoge\r\"
18
+
19
+ expect \"email: \"
20
+
21
+ send \"test@test.test\r\"
22
+
23
+ interact
24
+
25
+ "
26
+
27
+ ```