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

5 lines
102 B
Bash
Executable File

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