Skip to content
Permalink
e80341f0cf
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 14 lines (12 sloc) 227 Bytes
#/bin/bash
tmpn=`mktemp`
for suff in h cc cpp c ; do
for f in `find . -name *.$suff` ; do
echo $f
scripts/update_file_header.py $f $tmpn
if [ "$?" = "0" ] ; then
cat $tmpn > $f
fi
done
done
rm $tmpn