I want to capture all output of scp automate script and move all output to log file
My script:
#!/usr/bin/expect -f
spawn bash -c "scp /home/abc/pdf/105784/*.pdf [email protected]:/home/labdb2/Desktop/l/"
expect {
-re ".*sword.*" {
exp_send "password@\r"
}
}
interact
output:-
./exp_test.sh
spawn bash -c scp /home/abc/pdf/105784/*.pdf [email protected]:/home/labdb2/Desktop/l/
[email protected]'s password:
104_105856_adhikari.pdf 100% 10KB 9.8KB/s 00:00
134_105856_adhikari.pdf 100% 10KB 9.9KB/s 00:00
135_105856_adhikari.pdf 100% 10KB 9.8KB/s 00:00
193_105856_adhikari.pdf 100% 10KB 9.8KB/s 00:00
i want all the output in a log file say name scp_log.txt
also i do not want in a screen to display below thing
spawn bash -c scp /home/abc/pdf/105784/*.pdf [email protected]:/home/labdb2/Desktop/l/
[email protected]'s password:
If you are interested in pure Expect based way, then you should use
log_user
.If you want to enable logging to user, then you can use
log_user 1
to do the same.