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)
- Host: GitHub
- URL: https://github.com/synacktraa/neko
- Owner: synacktraa
- License: mit
- Created: 2022-04-29T09:20:06.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-05-09T20:44:13.000Z (about 4 years ago)
- Last Synced: 2025-06-18T22:43:48.089Z (about 1 year ago)
- Language: C
- Homepage:
- Size: 62.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.