Changed the idiap email address to the fleuret.org one.
[scripts.git] / mvdatedir.sh
index 2bc58d2..6c0c967 100755 (executable)
@@ -14,7 +14,7 @@
 # along with this program. If not, see <http://www.gnu.org/licenses/>.  #
 #                                                                       #
 # Written by and Copyright (C) Francois Fleuret                         #
-# Contact <francois.fleuret@idiap.ch> for comments & bug reports        #
+# Contact <francois@fleuret.org> for comments & bug reports             #
 #########################################################################
 
 # This script moves all the files specified as argument to directories
@@ -27,6 +27,7 @@ while [[ "$1" ]]; do
     if [[ -f "$1" ]]; then
         dir=$(date -r "$1" +%Y/%b)
         mkdir -p ${dir}
+        echo "$1 -> ${dir}"
         mv "$1" ${dir}
     else
         echo "Ignore: $1 is not a regular file."