blob: 1dda2f4699b80f934a58aa6a783f0190f574bdb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#!/bin/bash
LOCATION=$1
FILES="htm|css|html|js"
process() {
FILE="$1"
if [ -f "$FILE".gz ]
then
FILE_ORIG=$(stat -c %Y "$FILE")
FILE_GZIP=$(stat -c %Y "$FILE".gz)
if [ $FILE_ORIG -gt $FILE_GZIP ]
then
rm "$FILE".gz
gzip -k -9 "$FILE"
if [ "$DEBUG" == 1 ]
then
echo "Deleted old .gz and created new one at: $FILE.gz"
sleep $SLEEP_DELAY
fi
else
if [ "$DEBUG" == 1 ]
then
echo "Skipping - Already up to date: $FILE.gz"
fi
fi
else
gzip -k -9 "$FILE"
echo "Created new: $FILE.gz"
fi
}
export -f process
find $LOCATION -type f -regextype posix-extended -regex '.*\.('$FILES')' -exec /bin/bash -c 'process "{}"' \;
|