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

5 lines
102 B
Plaintext
Raw Normal View History

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