parallel/testsuite/tests-to-run/test02.sh

17 lines
316 B
Bash
Raw Normal View History

2007-09-10 20:28:03 +00:00
#!/bin/bash
PAR=parallel
2007-09-10 20:28:03 +00:00
rm -rf tmp 2>/dev/null
cp -a input-files/testdir2 tmp
cd tmp
echo '### Test filenames containing UTF-8'
find . -name '*.jpg' | $PAR -j +0 convert -geometry 120 {} {}_thumb.jpg
2007-09-10 20:28:03 +00:00
find . -name '*_thumb.jpg' | ren 's:/([^/]+)_thumb.jpg$:/thumb_$1:'
find |grep -v CVS | sort
2007-09-10 20:28:03 +00:00
cd ..
rm -rf tmp