diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2008-06-22 21:32:49 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2008-06-22 21:32:49 +0200 |
commit | db78cf8397d485b140d5e9193b422c1261995faa (patch) | |
tree | f2c7cf078b36f3c553eab7df0f530c45c16e4cd8 |
initial import from upstream
-rwxr-xr-x | bin/envstore | 97 | ||||
-rw-r--r-- | description | 1 | ||||
-rw-r--r-- | priority | 1 |
3 files changed, 99 insertions, 0 deletions
diff --git a/bin/envstore b/bin/envstore new file mode 100755 index 0000000..20c0b1a --- /dev/null +++ b/bin/envstore @@ -0,0 +1,97 @@ +#!/usr/bin/env python +# envstore - save and restore environment variables +# +# Copyright (C) 2008 Maximilian Gass <mxey@cloudconnected.org> +# Permission to use, copy, modify, and/or distribute this software for any +# purpose with or without fee is hereby granted, provided that the above +# copyright notice and this permission notice appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import cPickle as pickle +import getopt +import os +import sys + +def usage(): + print >> sys.stderr, """envstore - save and restore environment variables + +Usage: + envstore COMMAND [ARG] + +Commands: + show List saved variables in human-readable format + eval Generate shell code to set the variables + save Save a variable + rm Delete a variable + clear Clear out the stored variable""" + sys.exit(1) + +def save_store(): + store_file = open(store_filename, 'w') + pickle.dump(store, store_file, protocol=-1) + store_file.close() + +def get_key(): + try: + return sys.argv[2] + except IndexError: + print >> sys.stderr, "Usage: envstore " + command + " VARIABLE" + sys.exit(2) + +try: + command = sys.argv[1] +except IndexError: + usage() + +store_filename = "/tmp/envstore-" + str(os.getuid()) + +try: + store_file = open(store_filename) + store = pickle.load(store_file) + store_file.close() +except IOError: + store = {} + +if command == "show": + for k, v in store.iteritems(): + print k + "\t\t" + v + print "%i entries" % len(store) +elif command == "eval": + opts, args = getopt.getopt(sys.argv[2:], '-e') + opt_export = (('-e', '') in opts) + for k, v in store.iteritems(): + if opt_export: + print "export", + print k + "=" + v +elif command == "save": + key = get_key() + + try: + value = os.environ[key] + except KeyError: + print >> sys.stderr, key + " does not exist in environment" + sys.exit(3) + + store[key] = value + save_store() +elif command == "rm": + key = get_key() + + try: + del store[key] + except KeyError: + print >> sys.stderr, key + " does not exist in store" + sys.exit(4) + + save_store() +elif command == "clear": + os.remove(store_filename) +else: + usage() diff --git a/description b/description new file mode 100644 index 0000000..b1adb61 --- /dev/null +++ b/description @@ -0,0 +1 @@ +Envstore by Maximilian Gass diff --git a/priority b/priority new file mode 100644 index 0000000..00750ed --- /dev/null +++ b/priority @@ -0,0 +1 @@ +3 |