Question:
I am using the expect command to download some files automatically. But it does not download all the files, it only downloads 16 files out of a total of 41.This runs automatically and I can’t use interact
What am I missing and how do I download the remaining files?
expect.dat
Answer:
expect eof
is timing-out. The default timeout value is 10 seconds, so apparently 16 files is how many can be copied in that time.Solution:
If you have better answer, please add a comment about this, thank you!