You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
# For printing the passwords to save to a password manager
|
|
|
|
password_dir=~/ansible/secrets/passwords/
|
|
|
|
for dir in $(ls $password_dir); do
|
|
printf "%-17s : %20s\n" "$dir" "$(cat $password_dir/$dir/root_password)"
|
|
done
|