https://github.com/geodynamics/citcoms
Revision 8897df09fabc535ba88dcb7959d204477144cdb3 authored by Eh Tan on 14 June 2007, 22:58:05 UTC, committed by Eh Tan on 14 June 2007, 22:58:05 UTC
1 parent 8682d89
Raw File
Tip revision: 8897df09fabc535ba88dcb7959d204477144cdb3 authored by Eh Tan on 14 June 2007, 22:58:05 UTC
Update NEWS and configure.ac for v2.2.2 release
Tip revision: 8897df0
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