#!/bin/bash . /usr/lib/frugalware/fwmakepkg if [ "$1" == "--help" ]; then echo "files bigger than 100KB" exit 1 fi cd .. for i in `git ls-tree --name-only -r HEAD` do if [ `stat -c "%s" $i` -gt 100000 ]; then echo $i fi done