This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
import lzf | |
import os | |
import struct | |
def decompress(lzf_file, out_file): | |
chunk_number=1 | |
while True: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cd img | |
images=(`ls *.png *.jpg *.jpeg *.gif 2> /dev/null`) # get all images | |
cd ../sass | |
scss=(`ls *.scss */*.scss`) # get all compass files | |
usedImg=() | |
unusedImg=() |