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

Added another loop script

parent f98f837f
No related branches found
No related tags found
No related merge requests found
#/bin/sh
FILES=/space/test_data/flat/bf_00000.tif
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
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