#!/bin/sh
#!/bin/sh
# STTA Rev. 1.3 Copyright (c) 2001-2003 Jess Prez Lorenzo  --- license GNU GPL
for nom in `ls `
do  
    cat $nom | awk -F "=" '{ printf "%s=\n",$1 }' >$nom.new 
    wc -l $nom*
    mv $nom.new $nom
done
