I am passing argument in Expect through the command line in a shell script.
I tried this
#!/usr/bin/expect -f
set arg1 [lindex $argv 0]
spawn lockdis -p
expect "password:" {send "$arg1\r"}
expect "password:" {send "$arg1\r"}
expect "$ "
But it's not working. How can I fix it?