Salut,
Essaie plutôt : #!/usr/bin/expect -f
set force_conservative 1 ;
set timeout 2
spawn ftp -i neptune.net
expect "Name*:"
send "opercti\r"
expect "Password:"
send "opercti\r"
expect "ftp>"
send "binary\r"
expect "ftp>"
send "lcd ../data/OCP/805178/RetourRAPI/PourTransmettre\r"
expect "550*ftp>" exit "250*ftp>"
send "put temoin\r"
expect "550*ftp>" exit "200*226*ftp>"
send "quit\r";-))


