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 |
| 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 |