mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-23 23:13:39 -06:00
18 lines
452 B
Python
18 lines
452 B
Python
#!/usr/bin/env python
|
|
import sys
|
|
import time
|
|
from ert.enkf import EnKFMain
|
|
|
|
|
|
# This will instantiate the EnkFMain object and create a handle to
|
|
# "everything" ert related for this instance.
|
|
ert = EnKFMain( sys.argv[1] )
|
|
site_config = ert.siteConfig( )
|
|
|
|
jobs = site_config.get_installed_jobs( )
|
|
for job in jobs:
|
|
print job.name()
|
|
print " config : %s" % job.get_config_file()
|
|
print " executable: %s" % job.get_executable( )
|
|
print
|