You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
git-secret/src/commands/git_secret_whoknows.sh

50 lines
992 B
Bash

#!/usr/bin/env bash
function whoknows {
OPTIND=1
local long_display=0
while getopts "hl?" opt; do
case "$opt" in
h) _show_manual_for "whoknows";;
l) long_display=1;; # like ls -l
*) _invalid_option_for "whoknows";;
esac
done
shift $((OPTIND-1))
[ "$1" = "--" ] && shift
if [ $# -ne 0 ]; then
_abort "whoknows does not understand params: $*"
fi
# Validating, that we have a user:
_user_required
local users
# Getting the users from gpg:
users=$(_get_users_in_gitsecret_keyring)
for user in $users; do
echo -n "$user"
if [[ "$long_display" -eq 1 ]]; then
local expiration
expiration=$(_get_user_key_expiry "$user")
if [[ -n "$expiration" ]]; then
local expiration_date
expiration_date=$($SECRETS_EPOCH_TO_DATE "$expiration")
echo -n " (expires: $expiration_date)"
else
echo -n " (expires: never)"
fi
fi
echo
done
}