7 lines
104 B
Bash
Executable File
7 lines
104 B
Bash
Executable File
#!/usr/bin/expect
|
|
|
|
spawn pwsafe -e [lindex $argv 0]
|
|
expect "Enter passphrase for *:"
|
|
send "\r"
|
|
interact
|