An open API service indexing awesome lists of open source software.

https://github.com/synacktraa/neko

My implementation of cat (a utility command in Linux/Unix)
https://github.com/synacktraa/neko

Last synced: about 2 months ago
JSON representation

My implementation of cat (a utility command in Linux/Unix)

Awesome Lists containing this project

README

          


Neko














---


My implementation of cat (a tool to print contents of a file) in C

---

### Compile
> make
---

### Help
> neko -h

Output:

```sh
Usage: neko [OPTION]... [FILE]...
Concatenate FILE to standard output.

Options:
-n number all output lines
-s strip repeated empty output lines

Examples:
neko -n file Output file contents with line numbers
neko > file takes input from STDIN and redirects it to file
neko >> file takes input from STDIN and appends it to file
neko -s file Output file contents after stripping repeated empty lines
neko -sn file Output file contents with line numbers after stripping repeated empty lines
```

---
## **License**

### MIT

Copyright for portions of project [neko](https://github.com/SynAcktraa/neko) are held by [Github Account [SynAcktraa](https://github.com/SynAcktraa) Owner, 2022] as part of project [neko](https://github.com/SynAcktraa/neko)

All other copyright for project [neko](https://github.com/SynAcktraa/neko) are held by [Github Account [SynAcktraa](https://github.com/SynAcktraa) Owner, 2022].

Check the [LICENSE](LICENSE) for more details.