#!/bin/sh
#
# Author: Peter Keel <killer@discordia.ch>
# Extract users out of /etc/passwd for installing quotas and puts them in
# a file, separated on lines with a "\" for joining at the end.
#
cat /dev/null > users.quota
cat /etc/passwd | awk -F: '
                {
                printf("%s \\\n", $1)
                }
               ' >> users.quota
