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

au.net.causal.maven.plugins.boxdb.db.ScriptUtils Maven / Gradle / Ivy

There is a newer version: 3.3
Show newest version
package au.net.causal.maven.plugins.boxdb.db;

public final class ScriptUtils
{
    private ScriptUtils()
    {
    }

    /**
     * Whole string is in quotes, and escape quotes.
     */
    public static String shellEscape(String s)
    {
        StringBuilder buf = new StringBuilder();
        buf.append('\'');
        for (char c : s.toCharArray())
        {
            if (c == '\'')
                buf.append("'\\''");
            else
                buf.append(c);
        }
        buf.append('\'');

        return buf.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy