mirror of
https://github.com/simon987/scripts.git
synced 2025-04-04 08:23:05 +00:00
5 lines
126 B
Bash
Executable File
5 lines
126 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
find "$1" -iname "*.jpeg" -exec jpegoptim -m85 {} \;
|
|
find "$1" -iname "*.jpg" -exec jpegoptim -m85 {} \;
|