What I'm trying to do is to login to karaf console via bash script and execute there some commands. I'm trying to do it like this:
#!/bin/bash
cmd='sudo ssh -p 8101 openhab@localhost'
eval $cmd
cmd='echo "password" && echo log:clear && echo logout'
eval $cmd
How can you suspect, it doesn't work and it's freezing at "Password: ", waiting for user to type. Then, when I type the password, karaf is opening and when I close it, the rest of script is executing. Is there a way to type a password automaticly and execute commands inside?