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

org.hidetake.groovy.ssh.session.execution.Escape.groovy Maven / Gradle / Ivy

There is a newer version: 2.11.2
Show newest version
package org.hidetake.groovy.ssh.session.execution

/**
 * Shell escape utility.
 *
 * @author Hidetake Iwata
 */
class Escape {

    /**
     * Escape command arguments.
     * This method quotes each argument with single-quote.
     * @param arguments
     * @return
     */
    static String escape(List arguments) {
        arguments.collect { /'${it.replaceAll(~/'/, /'\\''/)}'/ }.join(/ /)
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy