#!/usr/bin/expect set timeout 10 spawn psql -d test -U user1 expect "Password for user user1:" send "ABC\r" expect "test=>" send "show max_connections;\r" expect "test=>" send "\\q\r" expect eof