blob: 8e4d54a3d411a9755d0df19f5abd324e555e3760 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
---
title: "Bulk thumbnails"
url: bulk-make-thumbnails.html
date: 2023-06-04T20:46:56+02:00
type: notes
draft: false
tags: [bash]
---
Make bulk thumbnails with ImageMagick.
```sh
#!/bin/bash
directory="./images/"
dimensions="360x360"
for file in "$directory"*.jpg; do
convert "$file" -resize $dimensions "$file"
new_filename="${file%.*}-thumbnail.jpg"
mv "$file" "$new_filename"
done
```
|