summaryrefslogtreecommitdiff
path: root/.scripts/pic-conv
diff options
context:
space:
mode:
Diffstat (limited to '.scripts/pic-conv')
-rwxr-xr-x.scripts/pic-conv11
1 files changed, 11 insertions, 0 deletions
diff --git a/.scripts/pic-conv b/.scripts/pic-conv
new file mode 100755
index 0000000..117292e
--- /dev/null
+++ b/.scripts/pic-conv
@@ -0,0 +1,11 @@
+#!/bin/sh
+## Simple shellscript to convert png images to jpg and vice versa in a given folder
+
+if [[ "$1" = "-j" ]]; then
+ find . -name "*.png" -exec mogrify -format jpg {} \;
+elif [[ "$1" = "-p" ]]; then
+ find . -name "*.jpg" -exec mogrify -format png {} \;
+else
+ echo "Use correct flags!" && exit
+fi
+