Initial commit. Utility methods to call out to the system shell.

This commit is contained in:
Jonathan Bernard 2016-12-17 22:49:40 -06:00
commit 65f0aa7806
3 changed files with 48 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*.sw?
build/
.gradle/

10
build.gradle Normal file
View File

@ -0,0 +1,10 @@
apply plugin: 'groovy'
apply plugin: 'maven'
group = 'com.jdbernard'
version = '0.1.0'
dependencies {
compile localGroovy()
}

View File

@ -0,0 +1,35 @@
package com.jdbernard.gradle
// ## Utility methods for working with processes.
public class ShellUtil {
public static void shell_(List<String> cmd) { shell(cmd, null, false) }
public static void shell_(String... cmd) { shell(cmd, null, false) }
public static void shell(String... cmd) { shell(cmd, null, true) }
public static void shell(List<String> cmd, File workingDir, boolean checkExit) {
shell(cmd as String[], workingDir, checkExit) }
public static void shell(String[] cmd, File workingDir, boolean checkExit) {
def pb = new ProcessBuilder(cmd)
if (workingDir) pb.directory(workingDir)
def process = pb.start()
process.waitForProcessOutput(System.out, System.err)
if (process.exitValue() != 0)
println "Command $cmd exited with non-zero result code."
if (checkExit) assert process.exitValue() == 0 : "Not ignoring failed command." }
public static void shell(List<List<String>> cmds, File workingDir) {
cmds.each {
ProcessBuilder pb = new ProcessBuilder(it)
pb.directory(workingDir)
pb.start().waitForProcessOutput(System.out, System.err) } }
public static void spawn(String... cmd) { spawn(cmd, null) }
public static void spawn(List<String> cmd, File workingDir) { spawn(cmd as String[], workingDir) }
public static void spawn(String[] cmd, File workingDir) {
def pb = new ProcessBuilder(cmd)
if (workingDir) pb.directory(workingDir)
def process = pb.start() }
}