;cli: doc: data formats: wording

This commit is contained in:
Simon Michael 2020-12-30 16:28:08 -08:00
parent a64d1aa6d0
commit 8ab2316604

View File

@ -355,10 +355,13 @@ recognised file extension, so as to either read successfully or to
show relevant error messages.
You can also force a specific reader/format by prefixing the file path
with the format and a colon. Eg to read a .dat file as csv:
with the format and a colon. Eg, to read a .dat file as csv format:
```shell
$ hledger -f csv:/some/csv-file.dat stats
```
Or to read stdin (`-`) as timeclock format:
```shell
$ echo 'i 2009/13/1 08:00:00' | hledger print -ftimeclock:-
```