CLI - non-interactive signin
Hello
Would it be possible to implement non-interactive signin in CLI?
Currently I use expect to handle signin process as I can't pass both secret and master pass at the same time. I'm getting prompted. This works OK but still I wouldn't mind dropping expect and use just op command itself.
Any hope for implementing this feature?
1Password Version: Not Provided
Extension Version: Not Provided
OS Version: Not Provided
Comments
-
Hey @keram ,
You can pass your Master Password into the
op signin
command:echo 'masterPassword' | op signin domain.1password.com email@mail.com 'secret-key'
You can also automate this in a script by making the
masterPassword
part a variable and then echoing that variable, however it would require you to store your Master Password and Secret Key in plain text on the hard drive, which is a security vulnerability and should be thoroughly considered.0