Symlink notifyd.py to osd_server.py for backward compatibility
[grml-scripts.git] / usr_bin / findchanged
1 #!/bin/sh
2 # Filename:      findchanged
3 # Purpose:       find changes in (real) files of dir1 ... dir2
4 # Authors:       grml-team (grml.org), (c) Klaus Knopper, (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2.
7 ################################################################################
8
9   if [ -d "$1" ]; then
10     for i in `( cd "$1"; find . -type f 2>/dev/null | sed 's,^\./,,g' | grep -v ' ' )`; do
11       cmp -s "$1/$i" "$2/$i" || echo "$1/$i"
12     done
13   elif [ -e "$1" ]; then
14     cmp -s "$1" "$2" || echo "$1"
15   fi
16
17 ## END OF FILE #################################################################