golang postgres list users code example
Example 1: list users in linux
cat /etc/passwd
Example 2: list mysql users
mysql> select host, user, password from mysql.user;
cat /etc/passwd
mysql> select host, user, password from mysql.user;