diff options
-rwxr-xr-x | script.sh | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -10,10 +10,12 @@ mkdir git -p # the most revs, thus start them first. f() { time { \ - find cvs-repo/gentoo-x86/ -maxdepth 1 -mindepth 1 -printf '%P\n' | \ - xargs -n1 -I{} -- du -cs "cvs-repo/gentoo-x86/{}" | grep -v 'total$' | \ - sort -gr | awk '{print $2;}' | xargs -n1 basename | \ - xargs -n1 -P${proc_count} -I{} ./process_directory.sh "{}" $1 + ( \ + echo "profiles" ; \ + find cvs-repo/gentoo-x86/ -maxdepth 1 -mindepth 1 -printf '%P\n' | \ + xargs -n1 -I{} -- du -cs "cvs-repo/gentoo-x86/{}" | grep -v 'total$' | \ + sort -gr | awk '{print $2;}' | xargs -n1 basename | grep -v profiles \ + ) | xargs -n1 -P${proc_count} -I{} ./process_directory.sh "{}" $1 } } fast=false |