fixed wording in this script.
authorChris Koeritz <fred@gruntose.com>
Tue, 17 Sep 2013 18:28:29 +0000 (14:28 -0400)
committerChris Koeritz <fred@gruntose.com>
Tue, 17 Sep 2013 18:28:29 +0000 (14:28 -0400)
scripts/files/find_non_owned.sh

index 65555b69897a41ad04a1aa097c928bd0d7ffd822..d5818a3d2bb1c531a5cd21138966878ebadbe94e 100644 (file)
@@ -13,7 +13,7 @@ done
 # check for files not in same group as the user.
 GROUP="$(groups | awk '{print $1}')"
   # assumption above that the first group is the 'primary' one.
-echo "These files are owned by primary group of $GROUP:" >>$outfile
+echo "These files are not owned by primary group of $GROUP:" >>$outfile
 for i; do
   find $i ! -group $GROUP >>$outfile
 done