w3ps1/static/topics/convert.sh

6 řádky
79 B
Bash
Surový Normální zobrazení Historie

2023-04-25 07:45:35 +02:00
#!/bin/bash
for file in *
do
cwebp -q 80 "$file" -o "${file%.png}.webp"
done