crash.commands.base.egrep.groovy Maven / Gradle / Ivy
The newest version!
package crash.commands.base
import org.crsh.cli.Argument
import org.crsh.cli.Command
import org.crsh.cli.Usage
import org.crsh.command.Pipe
import org.crsh.text.Screenable
import org.crsh.text.ScreenContext
import org.crsh.text.Style
import org.crsh.util.Utils
import java.util.regex.Matcher
import java.util.regex.Pattern
class egrep {
/** . */
static final char CR = '\n';
static class impl extends Pipe implements ScreenContext {
/** . */
final Matcher matcher;
/** . */
StringBuffer buffer = new StringBuffer()
/** . */
ArrayList
© 2015 - 2024 Weber Informatics LLC | Privacy Policy