Added generated doc.
This commit is contained in:
parent
a29d8130a9
commit
4948aaa970
18 changed files with 3605 additions and 6 deletions
12
README.md
12
README.md
|
@ -1,9 +1,9 @@
|
|||
[](http://opensource.org/licenses/BSD-3-Clause)
|
||||
[](https://github.com/ethauvin/dcat/actions/workflows/dart.yml)
|
||||
|
||||
# dcat: Concatenate file(s) to standard output.
|
||||
# dcat: Concatenate File(s) to Standard Output
|
||||
|
||||
A **cat** command-line implemenation in [Dart](https://dart.dev/), loosely based on the [Write command-line apps sample code](https://dart.dev/tutorials/server/cmdline).
|
||||
A **cat** command-line implemenation in [Dart](https://dart.dev/), inspired by the [Write command-line apps sample code](https://dart.dev/tutorials/server/cmdline).
|
||||
|
||||
## Command-Line Usage
|
||||
|
||||
|
@ -30,16 +30,16 @@ Examples:
|
|||
```
|
||||
## Compile Application
|
||||
|
||||
### Linux
|
||||
### *nix
|
||||
```sh
|
||||
dart compile exe -o bin/dcat bin/dcat.dart
|
||||
```
|
||||
|
||||
### Windows
|
||||
```cmd
|
||||
dart compile.exe bin/dcat.dart
|
||||
dart compile exe bin/dcat.dart
|
||||
```
|
||||
|
||||
## Differences from GNU cat
|
||||
## Differences from [GNU cat](https://www.gnu.org/software/coreutils/manual/html_node/cat-invocation.html#cat-invocation)
|
||||
- No binary file support.
|
||||
- Line numbers are printed as `X:` where `X` is the line number.
|
||||
- Line numbers are printed as `X:` where `X` is the line number.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue