Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

25
tldr/jpegoptim Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# jpegoptim
> Optimise JPEG images.
> More information: <https://github.com/tjko/jpegoptim>.
- Optimise a set of JPEG images, retaining all associated data:
`jpegoptim {{image1.jpeg}} {{image2.jpeg}} {{imageN.jpeg}}`
- Optimise JPEG images, stripping all non-essential data:
`jpegoptim --strip-all {{image1.jpeg}} {{image2.jpeg}} {{imageN.jpeg}}`
- Force the output images to be progressive:
`jpegoptim --all-progressive {{image1.jpeg}} {{image2.jpeg}} {{imageN.jpeg}}`
- Force the output images to have a fixed maximum filesize:
`jpegoptim --size={{250k}} {{image1.jpeg}} {{image2.jpeg}} {{imageN.jpeg}}`