cdist/cdist/conf/type/__acl/explorer/getent

4 lines
102 B
Bash
Executable file

#!/bin/sh -e
getent passwd | awk -F: '{print "user:"$1}'
getent group | awk -F: '{print "group:"$1}'