We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 59c89e7 + 412058a commit d6fad6dCopy full SHA for d6fad6d
README.md
@@ -59,6 +59,10 @@ A collection of simple Bash scripts.
59
1. [Decimal2Hex.sh](scripts/dec2hex.sh): convert Decimal Number to Hex
60
1. [Hex2Decimal](scripts/hextodec.sh): convert Hex number back to Decimal
61
62
+## Image manipulation
63
+
64
+1. [thumbnail.sh](scripts/thumbnail.sh): create 400px thumbnails from images in a folder
65
66
## License
67
68
MIT
scripts/thumbnail.sh
@@ -0,0 +1,6 @@
1
+#!/bin/bash
2
+for i in *.jpg; do
3
+ convert "$i" -thumbnail 400 "thumbs/$i";
4
+done;
5
6
0 commit comments