Changes between Version 26 and Version 27 of FrequentQuestions/LinuxFu
- Timestamp:
- 02/02/13 14:42:50 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FrequentQuestions/LinuxFu
v26 v27 210 210 This will send signal 9 to all astrobear processes that you are currently running. 211 211 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 }}} 212 222 == FORTRAN Command Line and !Integer/String !Read/Writes == 213 223 See the FortranCommandLine page.