diff options
author | Gunnar Wrobel <wrobel@gentoo.org> | 2005-09-03 08:53:56 +0000 |
---|---|---|
committer | Gunnar Wrobel <wrobel@gentoo.org> | 2005-09-03 08:53:56 +0000 |
commit | 4021c4cc9bd38bbff9e308545b6c278e68f0c8b0 (patch) | |
tree | ff98ea5b1c371213d719fd1518e469473b4ccc91 /z-distfiles/scripts-gw/check-ALLWRITE | |
parent | These are the rearrangements (diff) | |
download | misc-4021c4cc9bd38bbff9e308545b6c278e68f0c8b0.tar.gz misc-4021c4cc9bd38bbff9e308545b6c278e68f0c8b0.tar.bz2 misc-4021c4cc9bd38bbff9e308545b6c278e68f0c8b0.zip |
Preparing new scripts-gw release
svn path=/local/; revision=331
Diffstat (limited to 'z-distfiles/scripts-gw/check-ALLWRITE')
-rwxr-xr-x | z-distfiles/scripts-gw/check-ALLWRITE | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/z-distfiles/scripts-gw/check-ALLWRITE b/z-distfiles/scripts-gw/check-ALLWRITE new file mode 100755 index 0000000..ac2691b --- /dev/null +++ b/z-distfiles/scripts-gw/check-ALLWRITE @@ -0,0 +1,12 @@ +#!/bin/bash +LOG=/root/.log/read.log +LOG_OLD=/root/.log/read.log.old +mv $LOG $LOG_OLD +find / -xdev -perm +o=w ! \( -type d -perm +o=t \) ! -type l -print > $LOG + +diff -Nau $LOG_OLD $LOG +echo "##################################################" +cat $LOG_OLD +echo "##################################################" +cat $LOG +rm $LOG_OLD |