#!/bin/sh headercolor=bbbbbb linecolor=dddddd files=`find -perm +111 -type f | xargs file | grep BFLT | cut -b 2- | sed "s/:.*//"` echo "" headerprinted=0 for f in $files; do \ if [ "$headerprinted" = "0" ]; then headerprinted=1; echo "" echo "" echo "" arm-elf-flthdr ./$f | grep "^ " | cut -b 5- | sed "s/:.*//" | sed "s/^/" fi fname2=`echo $f | sed "s/\//_/g" | cut -b 2-` cp -f ./$f /tmp/flttmp arm-elf-flthdr -Z /tmp/flttmp arm-elf-strings /tmp/flttmp >../strings/strings-$fname2.txt echo "" echo -n "" echo "" arm-elf-flthdr ./$f | grep "^ " | cut -b 19- | sed "s/^/" done echo "
FileSize/" | sed "s/\$/<\/td>/" echo "
" echo -n "$f
" echo -n '' echo "
"`stat -c %s ./$f`"/" | sed "s/\$/<\/td>/" echo "
" rm -f /tmp/flttmp