aboutsummaryrefslogtreecommitdiff
path: root/content/snippets/batch-rename-files.md
blob: 1413d116962acabc4403be04050c805b83cba9d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
---
title: Batch rename files using rename
description: Batch rename files using rename
tags: ["commandline"]
---

This appends .json to each file that doesn't already have a .json extension.

```console
rename 's/$/.json/' *
```