#!/usr/bin/expect -f
# 
spawn createdb -p 5433 -U postgres  dbdoc
set password [lindex $argv 0]
set timeout 180
expect "Password:"
send "linux4fbill\r"
expect eof
            