mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/WikiEditor
synced 2024-11-25 08:48:18 +00:00
13 lines
185 B
Bash
Executable file
13 lines
185 B
Bash
Executable file
#! /bin/bash
|
|
|
|
# Compresses all PNGs in the current directory and puts the compressed
|
|
# version in the parent directory
|
|
#
|
|
# Requires pngcrush
|
|
|
|
for f in *.png
|
|
do
|
|
pngcrush $f ../$f
|
|
done
|
|
|