Skip to content

Commit

Permalink
Merge pull request #25 from matagus/update-readme-for-multiple-files-…
Browse files Browse the repository at this point in the history
…and=stding

Update README.md examples to include new cases: multiple files and stdin
  • Loading branch information
matagus authored Sep 23, 2024
2 parents 1b3ccac + 9676f1f commit 2dd67db
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,36 @@ Alice Bar:
7, Fix bug C, To Do, Alice Bar, High
```

The command can also read input from `stdin`:

```bash
>> cat sample-files/tasks.csv | shelve -c 4

High:

1, Implement feature A, In Progress, John Doe, High
4, Refactor code, To Do, Jane Doe, High
7, Fix bug C, To Do, Alice Bar, High

Low:

2, Fix bug B, Done, Jane Doe, Low
5, Deploy to production A and B, To Do, John Doe, Low
8, Write tests for feature A, In Progress, John Doe, Low

Medium:

3, Write tests for feature A, In Progress, John Doe, Medium
6, Write missing documentation for feature A, Done, Peter Foo, Medium
```

Or reading multiple files at once:

```bash
shelve -c 4 sample-files/tasks.csv sample-files/more-tasks.csv
```


## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.
Expand Down

0 comments on commit 2dd67db

Please sign in to comment.