https://github.com/geodynamics/citcoms
Revision 6f388ea897fb16cb3dd6a3f4cf682c4426e039d7 authored by Sue Kientz on 25 March 2007, 23:07:31 UTC, committed by Sue Kientz on 25 March 2007, 23:07:31 UTC
1 parent 723f757
Raw File
Tip revision: 6f388ea897fb16cb3dd6a3f4cf682c4426e039d7 authored by Sue Kientz on 25 March 2007, 23:07:31 UTC
changed verbage in History 1.2, paragraphs on version 2.1, to past tense, since notes on 2.2 should be only ones in present tense
Tip revision: 6f388ea
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