mirror of
https://github.com/StackExchange/blackbox.git
synced 2025-12-15 02:53:00 +02:00
19 lines
254 B
Bash
Executable File
19 lines
254 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#
|
|
# blackbox_listadmins -- List active admins for keyring
|
|
#
|
|
|
|
# Example:
|
|
# blackbox_listadmins
|
|
#
|
|
|
|
set -e
|
|
source "${0%/*}/_blackbox_common.sh"
|
|
|
|
fail_if_not_in_repo
|
|
|
|
|
|
# simply display the contents of the admins file
|
|
cat "$BB_ADMINS"
|