#!/bin/bash # # Fanboy-Merge (Chinese) Adblock list grabber script v1.0 (12/06/2011) # Dual License CCby3.0/GPLv2 # http://creativecommons.org/licenses/by/3.0/ # http://www.gnu.org/licenses/gpl-2.0.html # # Make Ramdisk. # $GOOGLEDIR/scripts/ramdisk.sh # Fallback if ramdisk.sh isn't excuted. # if [ ! -d "/tmp/ramdisk/" ]; then rm -rf /tmp/ramdisk/ mkdir /tmp/ramdisk; chmod 777 /tmp/ramdisk mount -t tmpfs -o size=30M tmpfs /tmp/ramdisk/ mkdir /tmp/ramdisk/opera/ fi # Trim off header file (first 2 lines) # sed '1,2d' $GOOGLEDIR/firefox-regional/fanboy-adblocklist-chn.txt > $TESTDIR/fanboy-chn-temp2.txt # Remove Empty Lines # sed '/^$/d' $TESTDIR/fanboy-chn-temp2.txt > $TESTDIR/fanboy-chn-temp.txt # Remove Bottom Line # sed '$d' < $TESTDIR/fanboy-chn-temp.txt > $TESTDIR/fanboy-chn-temp2.txt # Merge to the files together # cat $MAINDIR/fanboy-adblock.txt $TESTDIR/fanboy-chn-temp2.txt > $TESTDIR/fanboy-chn-merged.txt # Create a backup incase addchecksum "zeros" the file # cp -f $TESTDIR/fanboy-chn-merged.txt $TESTDIR/fanboy-chn-merged-bak.txt # Add checksum # perl $TESTDIR/addChecksum.pl $TESTDIR/fanboy-chn-merged.txt if [ -s $TESTDIR/fanboy-chn-merged.txt ]; then # Copy Merged file to main dir # cp $TESTDIR/fanboy-chn-merged.txt $MAINDIR/r/fanboy+chinese.txt # Compress file # rm -f $MAINDIR/r/fanboy+chinese.txt.gz $NICE $ZIP a -mx=9 -y -tgzip $MAINDIR/r/fanboy+chinese.txt.gz $MAINDIR/r/fanboy+chinese.txt > /dev/null > /dev/null # log ### echo "Updated fanboy+chinese.txt" echo "Updated /r/fanboy+chinese.txt (merged fanboy+chinese) (script: firefox-adblock-chn.sh) on `date +'%Y-%m-%d %H:%M:%S'`" >> /var/log/adblock-log.txt # Clear old Variables # rm -rf $TESTDIR/fanboy-chn-* else # Add checksum # sleep 2 perl $TESTDIR/addChecksum.pl $TESTDIR/fanboy-chn-merged-bak.txt # Copy Merged file to main dir # cp $TESTDIR/fanboy-chn-merged-bak.txt $MAINDIR/r/fanboy+chinese.txt # Compress file # rm -f $MAINDIR/r/fanboy+chinese.txt.gz ### echo "Updated fanboy+chinese.txt (checksum zerod file)" $NICE $ZIP a -mx=9 -y -tgzip $MAINDIR/r/fanboy+chinese.txt.gz $MAINDIR/r/fanboy+chinese.txt > /dev/null > /dev/null echo "*** ERROR ***: Addchecksum Zero'd the file: fanboy+chinese.txt (script: firefox-adblock-chn.sh) on `date +'%Y-%m-%d %H:%M:%S'`" >> /var/log/adblock-log.txt # Clear old Variables # rm -rf $TESTDIR/fanboy-chn-* fi