Added README.md

This commit is contained in:
Paul H 2025-06-16 21:20:46 +02:00
parent b557fa1c3d
commit 95ceff1506
2 changed files with 12 additions and 1 deletions

11
README.md Normal file
View File

@ -0,0 +1,11 @@
ls -la /bin/java
command: ls
flags: l, a
args: /bin/java
super -abc -de -f super nice danke paul
command: super
flags: a, b, c, d, e, f
args: super, nice, danke, paul

View File

@ -2,7 +2,7 @@ package de.pabulaner.jcmd.core;
public interface Parser {
void addCommand(Command command);
// void addCommand(Command command);
Line parse(String raw);
}