replace_header.sh
Go to the documentation of this file.
1 #!/usr/bin/bash
2 
3 shopt -s nullglob
4 for f in *.*
5 do
6  echo "file - $f"
7  sed -f `echo $GENIE`/src/contrib/misc/replace_header_files.sed $f > $f~
8  mv $f~ $f
9 
10 done
11 
12 
13 
14 
15