diff options
-rwxr-xr-x | cron-sh/diff_check.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cron-sh/diff_check.sh b/cron-sh/diff_check.sh index 751b01d..f6cff92 100755 --- a/cron-sh/diff_check.sh +++ b/cron-sh/diff_check.sh @@ -80,7 +80,7 @@ if [[ ${CHECK_WRITEABLE} == yes ]]; then printf "\nSecurity Warning: Change in World Writeable Files found :\n" >> ${TMP} grep '^+' ${WRITEABLE_DIFF} | grep -vw "^+++ " | sed 's|^.||' | while read file; do printf "\t\t- Added writables files : ${file}\n" - done >> ${TMP + done >> ${TMP} grep '^-' ${WRITEABLE_DIFF} | grep -vw "^--- " | sed 's|^.||' | while read file; do printf "\t\t- Removed writables files : ${file}\n" done >> ${TMP} |