From: Chris Koeritz Date: Tue, 17 Sep 2013 18:28:29 +0000 (-0400) Subject: fixed wording in this script. X-Git-Tag: 2.140.90~926 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=c9fb0ca542525eac38c511b210a045f0acb6a57e;p=feisty_meow.git fixed wording in this script. --- 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