mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 14:07:55 +00:00
c81a15677d
/bin/dash?). Unittest failed if /bin/sh was dash.
17 lines
316 B
Bash
Executable file
17 lines
316 B
Bash
Executable file
#!/bin/bash
|
|
|
|
PAR=parallel
|
|
|
|
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
|
|
find . -name '*_thumb.jpg' | ren 's:/([^/]+)_thumb.jpg$:/thumb_$1:'
|
|
|
|
find |grep -v CVS | sort
|
|
|
|
cd ..
|
|
rm -rf tmp
|