summaryrefslogtreecommitdiff
path: root/all.sh
diff options
context:
space:
mode:
authorxAlpharax <42233094+xAlpharax@users.noreply.github.com>2023-05-06 03:30:43 +0300
committerxAlpharax <42233094+xAlpharax@users.noreply.github.com>2023-05-06 03:30:43 +0300
commitf27b568a77580cacd45510f554dd1998445beb75 (patch)
treec0f773e4ff75e7a94d14f974f7d0083d8b132366 /all.sh
parentcf395a0190a709fb3a44e2c42b2f401e434cb037 (diff)
Testing and Userland Changes
Changes to be committed: renamed: Images/colorful.jpg -> Images/Colorful.jpg new file: Images/Abstract.jpg new file: Images/Shade.jpg new file: all.sh modified: README.md modified: neuralart.py modified: stylize.sh
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