Skip to content
Snippets Groups Projects
copy_test_data.sh 147 B
#/bin/sh

FILES=/space/test_data/flat/*
TARGET=/space/projects/live-viewer/data/source/local
for f in $FILES
do
    echo $f
    cp $f $TARGET
done