9 lines
236 B
Bash
9 lines
236 B
Bash
#!/bin/bash
|
|
|
|
for i in */; do
|
|
if [ -e $i/solution1/syn/report ];
|
|
then
|
|
printf "%30s %s\n" $i "`cat $i/solution1/syn/report/${i%%/}_csynth.rpt | grep -A23 "Utilization Estimates" |tail -n21 |grep Total|cut -c30-`"
|
|
fi
|
|
done
|