0
votes
3answers
678 views
Exit status code for Expect script called from Bash
I made a Bash script which uses an expect script to automate ssh logins.The script connects to multiple servers and runs some commands.
The bash script prompts for login credentials once.
I …
1
vote
2answers
140 views
read error: 0: Resource temporarily unavailable
I have a bash script which prompts for user input multiple times and processes input in the background during the time the next input is expected.
I keep getting this error once in while.
…
0
votes
read error: 0: Resource temporarily unavailable
A simple redirection of error to /dev/null did the trick for me.
some_function1 2> /dev/null &
some_function2 2> /dev/null &
…
