test.py.html | |
Source file: test.py | |
Directory: /home/rjl/git/rjleveque/clawpack-4.x/apps/euler/1d/hump | |
Converted: Tue Jul 26 2011 at 12:58:46 using clawcode2html | |
This documentation file will not reflect any later changes in the source file. |
import os lines = open('make_all.sh','r').readlines() for line in lines: line = line.strip() print 'Line: ',line if (len(line)==0) or (line[0]=='#'): print "Ignoring!" else: return_code = os.system(line) print "return_code = ",return_code