blob: 987c49d1d2b977719fc7faa2e72e579bbe493c0b (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
 | #!/usr/bin/env expect
# disables script output
log_user 0
spawn tmux
# Waiting for tmux to attach. If this is not done, next command, `send` will
# not work properly.
sleep 1
# this is tmux prefix + alt + u
send "u"
set timeout 5
expect_after {
  timeout { exit 1 }
}
expect {
  "Removing \"tmux-example-plugin\""
}
expect {
  "\"tmux-example-plugin\" clean success"
}
expect {
  "Done, press ENTER to continue." {
    exit 0
  }
}
exit 1
 |