3
Aspettati il timeout, negli script Bash
Come faccio ad aggiungere il timeout per "aspettarsi" nel seguente script? Voglio impostarlo come 120 secondi. #!/bin/bash HOST="localhost" USER="myuname" PASS="mypassword" VAR=$(expect -c " spawn ssh $USER@$HOST expect \"password:\" send \"$PASS\r\" expect \"\\\\$\" send \"ls\r\" expect -re \"$USER.*\" send \"logout\" ") echo "===============" echo "$VAR"