add the old snippet md files

This commit is contained in:
Travis Shears 2025-06-05 16:20:57 +02:00
parent fc0dd204c7
commit bcf8313a4b
110 changed files with 3048 additions and 0 deletions

View file

@ -0,0 +1,17 @@
---
title: "remove gps metadata from image"
seo_description: code snippet on how to use exiftool in the shell to remove gps metadata from images
date: 2023-01-31T12:53:04+01:00
draft: false
snippet_types:
- exiftool
---
Recently I noticed some of the images on my site had GPS metadata info. Thats
not very private! So I did some googling and found this solution.
```shell
$ exiftool -GPS*= $(fd -e jpg -e png -e jpeg)
```
[source](https://exiftool.org/forum/index.php?topic=12615.0)