#!/bin/bash

# this excludes the home directories of system accounts with
# uid >= 1000 from the AIDE check.

getent passwd | awk '{ if( $3 >= 1000) { print "!" $6 }}' FS=":"
