missing NULL terminator in set_config_x
[geda-gaf.git] / gnetlist-legacy / scripts / bom_xref.sh.in
blob8aea62e63673a333138cb0038de7716eec96b449
1 #!/bin/sh
2 # ha ha
4 if [ -z "$1" ] ; then
5 echo "usage $0 geda-bom # output on stdout"
6 exit 255
7 fi
8 cat $1 | sort -k1,1 |\
9 @AWK@ '!/device/{printf("%-5s %-20s %-20s %-20s\n", toupper($1), toupper($2), toupper($3), toupper($4));} /device/{}'