Added GitHub CI badge.

This commit is contained in:
Erik C. Thauvin 2021-10-09 20:05:51 -07:00
parent 50bae666d9
commit c21191160f

View file

@ -1,4 +1,5 @@
[![License (3-Clause BSD)](https://img.shields.io/badge/license-BSD%203--Clause-blue.svg?style=flat-square)](http://opensource.org/licenses/BSD-3-Clause) [![License (3-Clause BSD)](https://img.shields.io/badge/license-BSD%203--Clause-blue.svg?style=flat-square)](http://opensource.org/licenses/BSD-3-Clause)
[![GitHub CI](https://github.com/ethauvin/dcat/actions/workflows/dart.yml/badge.svg)](https://github.com/ethauvin/dcat/actions/workflows/dart.yml)
# dcat: Concatenate file(s) to standard output. # dcat: Concatenate file(s) to standard output.
@ -27,18 +28,18 @@ Examples:
dcat f - g Output f's contents, then standard input, then g's contents. dcat f - g Output f's contents, then standard input, then g's contents.
dcat Copy standard input to standard output. dcat Copy standard input to standard output.
``` ```
# Compile Application ## Compile Application
## Linux ### Linux
```sh ```sh
dart compile exe -o bin/dcat bin/dcat.dart dart compile exe -o bin/dcat bin/dcat.dart
``` ```
## Windows ### Windows
```cmd ```cmd
dart compile.exe bin/dcat.dart dart compile.exe bin/dcat.dart
``` ```
# Differences from GNU cat ## Differences from GNU cat
- No binary file support. - 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.