An open API service indexing awesome lists of open source software.

https://github.com/sty00a4-code/clat


https://github.com/sty00a4-code/clat

Last synced: 10 months ago
JSON representation

Awesome Lists containing this project

README

          

# CLAT

Command Line Application Tokenizer

## Examples
---
```
echo hello there
```

```lua
{
[1] = "echo",
[2] = "hello",
[3] = "there",
}
```
---
```
echo "hello there"
```

```lua
{
[1] = "echo",
[2] = "hello there",
}
```
---
```
echo hello -nl
```

```lua
{
[1] = "echo",
[2] = "hello",
["nl"] = true,
}
```
---
```
echo hello -wait=1
```

```lua
{
[1] = "echo",
[2] = "hello",
["wait"] = "1",
}
```
---
```
echo hello there -sep=" "
```

```lua
{
[1] = "echo",
[2] = "hello",
[3] = "there",
["sep"] = " ",
}
```
---