view clwapp/utils.py @ 0:196f241286f7

initial import of clwapp, from https://svn.openplans.org/svn/standalone/clwapp/trunk/
author k0s <k0scist@gmail.com>
date Sun, 01 Nov 2009 18:24:35 -0500
parents
children a0816f433861
line wrap: on
line source

import subprocess

def shargs(args):
    process = subprocess.Popen('for arg in %s; do echo $arg; done' % args,
                               shell=True, stdout=subprocess.PIPE)
    output = process.communicate()[0]
    output = output[:-1] # last line will be blank
    return output.split('\n')