blob: 7aaa2efd916f6370c30786020ee0063da7ab6041 (
plain)
1
2
3
4
5
6
7
|
#!/bin/bash
for style in Images/* ; do
for content in Images/* ; do
if [ $style != $content ] && [ ! -f $(basename ${content%.*})'_in_'$(basename ${style%.*})'.mp4' ]; then
./stylize.sh $style $content
fi ; done ; done
|