Grep log file
Revision as of 13:40, 13 June 2013 by Troels Emtekær Linnet (talk | contribs) (→Grep the log file for commands)
Grep the log file for commands
First we find which commands relax has performed, and separate into the different fitting models.
We also just make some line space and important points
tcsh ;
set IN=LOGFILE.txt
set OUT=greplogfile.txt
egrep -wi --color 'relax>| model -' LOGFILE.txt > $OUT
Then we replace instances of relax> with empty, and comment out the model line
sed -i "s/relax> //" $OUT ;
sed -i 's/^- /\n#- /' $OUT ;
sed -i 's/^minimise(/\nminimise(/' $OUT ;
sed -i '0,/spectrum.replicated(/s//\nspectrum.replicated(/' $OUT ;