11 lines
107 B
Text
11 lines
107 B
Text
#!/usr/bin/expect -f
|
|
|
|
spawn mutt -d 5
|
|
expect "q:Quit" {
|
|
sleep 2
|
|
send "\r"; send "qq";
|
|
}
|
|
|
|
interact
|
|
|
|
|