https://github.com/geodynamics/citcoms
Revision de1b3e07cc709e0bc7f68d60afb9925156bae537 authored by Michael Gurnis on 12 May 2008, 21:22:42 UTC, committed by Michael Gurnis on 12 May 2008, 21:22:42 UTC
1 parent 1fbd9ec
Raw File
Tip revision: de1b3e07cc709e0bc7f68d60afb9925156bae537 authored by Michael Gurnis on 12 May 2008, 21:22:42 UTC
fixed typo
Tip revision: de1b3e0
citcoms_datadir
#!/usr/bin/env python

def get_var():
    # get your username on this machine, and make it upper case
    import os
    var = os.environ.get("USER")
    return var.upper()


# invariant prefix of datadir
prefix = "/scratch/"

# invariant suffix of datadir
suffix = ""

# get the machine-dependent part of datadir
var_path = get_var()

# construct the full string for datadir
print "%s%s%s" % ( prefix, var_path, suffix )
back to top