mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
8 lines
150 B
Bash
8 lines
150 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
if [[ -z $1 ]]; then
|
||
|
echo "You must supply a root folder!"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
find "$1" -iname '*png' -exec pngcrush -ow -brute {} \;
|