From c9fb0ca542525eac38c511b210a045f0acb6a57e Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Tue, 17 Sep 2013 14:28:29 -0400 Subject: [PATCH] fixed wording in this script. --- scripts/files/find_non_owned.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/files/find_non_owned.sh b/scripts/files/find_non_owned.sh index 65555b69..d5818a3d 100644 --- a/scripts/files/find_non_owned.sh +++ b/scripts/files/find_non_owned.sh @@ -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 -- 2.34.1