All Downloads are FREE. Search and download functionalities are using the official Maven repository.

se.vidstige.jadb.managers.Bash Maven / Gradle / Ivy

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("'", "'\\''") + "'";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy