Exec Command
Execute arbitrary system calls and replaces templated environment variables with Keeper vault secrets
exec command
exec commandExample Linux bash script
#!/bin/bash
# Bash script that pulls Keeper secrets
connect_db() {
echo "Database Password:" $DB_PASSWORD
}
call_stripe() {
echo "API Key:" $API_KEY
}
connect_db
call_stripeExample Windows batch file
Example PowerShell script
Environment Variable Replacement
Example Shell Script
Last updated
Was this helpful?

