For example, I have the code below:
cmd = "ssh <host>"
os.system(cmd)
How I can send the password in the python script so that I don't have to type the password every time?
For example, I have the code below:
cmd = "ssh <host>"
os.system(cmd)
How I can send the password in the python script so that I don't have to type the password every time?