Skip to content
Snippets Groups Projects
Commit e66a6a19 authored by Manuela Kuhn's avatar Manuela Kuhn
Browse files

Added test loop for cbf-files

parent f917f925
No related branches found
No related tags found
No related merge requests found
#/bin/sh
FILES=/space/test_data/test_015_00001.cbf
TARGET=/space/projects/live-viewer/data/source/local
i=1
LIMIT=1000
while [ "$i" -le $LIMIT ]
do
TARGET_FILE="$TARGET/$i.tif"
echo $TARGET_FILE
cp $FILES "$TARGET_FILE"
i=$(($i+1))
done
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment