summaryrefslogtreecommitdiff
path: root/all.sh
diff options
context:
space:
mode:
Diffstat (limited to 'all.sh')
-rwxr-xr-xall.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/all.sh b/all.sh
new file mode 100755
index 0000000..7aaa2ef
--- /dev/null
+++ b/all.sh
@@ -0,0 +1,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