Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/resloved/tchat

🎮 — Twitch Chat Utils.
https://github.com/resloved/tchat

Last synced: 2 months ago
JSON representation

🎮 — Twitch Chat Utils.

Awesome Lists containing this project

README

        

# tchat

## Commands

### trecv

```bash
trecv channel
```

### tsend

```bash
tsend channel username message
```

## Usage

```bash
# Logging
trecv channel >> channel-logs.txt

# Parsing
trecv channel | awk { print $1 }

# Filtering
trecv channel | grep "filter"

# Automating
for x in {1..5}; do tsend channel username message; sleep 30; done

# Respond
trecv channel | awk '$2 ~ /!command/ { system("tsend channel username message") }'
```