se.vidstige.jadb.managers.Bash Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sikulixapi Show documentation
Show all versions of sikulixapi Show documentation
... for visual testing and automation
The newest version!
/*
* Copyright (c) 2010-2020, sikuli.org, sikulix.com - MIT license
*/
package se.vidstige.jadb.managers;
public class Bash {
private Bash() {
throw new IllegalStateException("Utility class");
}
public static String quote(String s) {
// Check that s contains no whitespace
if (s.matches("\\S+")) {
return s;
}
return "'" + s.replace("'", "'\\''") + "'";
}
}