Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:18:50

0001 #!/usr/bin/tcsh
0002 
0003 # Change process name in Matthias' config files
0004 
0005 foreach file (`ls HLT_*_cfi.py`)    
0006 # echo sed 's/'\"'$1'\"'/'\"'$2'\"'/g' ${file} > ${file}new
0007  sed s/'\"'$1'\"'/'\"'$2'\"'/g ${file} > ${file}new
0008  mv ${file}new ${file}
0009 end
0010 
0011 echo Process name changed from $1 to $2 in all files
0012