Changes between Version 26 and Version 27 of FrequentQuestions/LinuxFu


Ignore:
Timestamp:
02/02/13 14:42:50 (12 years ago)
Author:
Jonathan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • FrequentQuestions/LinuxFu

    v26 v27  
    210210This will send signal 9 to all astrobear processes that you are currently running.
    211211
     212== Changing the endiannes of bov files from little to big ==
     213  Occasionally you may end up generating data on a big endian machine, but the description of the data in the .bov file says little endian.  In order to view the data in visit you need to correct the endian flag in each .bov file.
     214{{{
     215  mkdir out_temp
     216  cp out/*.bov out_temp/
     217  cd out_temp
     218  for i in `ls *.bov`; do sed 's/LITTLE/BIG/' $i > ../out/$i; done
     219  cd ../
     220  rm -rf out_temp
     221}}}
    212222 == FORTRAN Command Line and !Integer/String !Read/Writes ==
    213223See the FortranCommandLine page.