openct-tasks/bebras/2012/old/restoreImgs.sh

6 lines
105 B
Bash

#! /bin/bash
for f in $(find . -name "*-original*" | grep -v ".svn")
do
cp "$f" ${f/-original/};
done