From 3b39301d34d7a000325a42bbcfe880b53ac26154 Mon Sep 17 00:00:00 2001 From: klaar36 Date: Fri, 19 May 2017 15:05:06 +0200 Subject: imported misc scripts --- src/utils/mkdtemp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 src/utils/mkdtemp (limited to 'src/utils/mkdtemp') diff --git a/src/utils/mkdtemp b/src/utils/mkdtemp new file mode 100755 index 0000000..b4cb2a1 --- /dev/null +++ b/src/utils/mkdtemp @@ -0,0 +1,7 @@ +#!/usr/bin/python + +import tempfile +from os.path import expanduser + +home = expanduser("~") +tempfile.mkdtemp(prefix='TDIU16', dir=home) -- cgit v1.2.1