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