#!/bin/bash equery files $1 | grep -v '\->' | grep -v '*' | while read line;do [ -f "$line" ] && echo $line;done | xargs du -cb | grep total | cut -d" " -f1 | while read line;do total=$((total+line));echo $total;done | tail -n1