#/bin/sh

FILES=/space/test_data/flat/*
TARGET=/space/projects/Live_Viewer/source/local
for f in $FILES
do
    echo $f
    cp $f $TARGET
done