I am using autoexpect for the first time. I am not sure what should be the parameters for using it. I executed autoexpect command and there were continuous messages "autoexpect started, file is script.exp". If I execute ssh nothing happens.
autoexpect started, file is script.exp
autoexpect started, file is script.exp
autoexpect started, file is script.exp
autoexpect started, file is script.exp
Could anyone please help me on this.
Thanks in advance.
autoexpectwill create an expect script based on your actions, which can be reused.So that means, first time you'll have to perform all the actions manually. Next time you can use the generated file
script.expto repeat the same actions. You may modify script.exp to make it more generic.To exit out of autoexpect, simply type
exitwhen all your actions are done.