Process text using configurable tasks. The CLI app can read tasks from any .yml file that follow the task schema.
yaml
tasks:
- data:
- replace # command to replace text
- original # text to replace
- replace text # text to replace with
- data:
- count # command to count a word
- word # word to count
yaml
tasks:
- data:
- replace # command to replace text
- column_name # column to replace text in
- original # text to replace
- replace text # text to replace with
- data:
- replace # command to replace text
- column_name # column to replace text in
- original # text to replace
- replace text # text to replace with
```bash
flw -f
flw -f tasks.yml -i input.txt -t txt
flw -f tasks.yml -i input.csv -t csv ```