diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/edu/stsci/ShUtil.groovy | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/edu/stsci/ShUtil.groovy b/src/edu/stsci/ShUtil.groovy new file mode 100644 index 0000000..0a57864 --- /dev/null +++ b/src/edu/stsci/ShUtil.groovy @@ -0,0 +1,14 @@ +package edu.stsci + +class ShUtil implements Serializable { + def libroot = libraryResource('edu/stsci/init.sh') + def environ = [:] + + def init() { + def pairs = sh "source ${libroot}", returnStdout: true + } + + def infect() { + sh "echo" + } +} |