https://github.com/caius/excat
cat(1) implemented in elixir
https://github.com/caius/excat
cat unix-command
Last synced: about 1 year ago
JSON representation
cat(1) implemented in elixir
- Host: GitHub
- URL: https://github.com/caius/excat
- Owner: caius
- Created: 2016-01-09T12:36:54.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-10T12:02:38.000Z (over 10 years ago)
- Last Synced: 2025-03-21T02:12:32.356Z (over 1 year ago)
- Topics: cat, unix-command
- Language: Elixir
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Excat
Implementation of `cat(1)` in [Elixir](http://elixir-lang.org). Ideally feature equivilent but might not be.
## Installation
1. Clone this repository
2. Build the binary
mix escript.build
3. Use `excat` as you would `cat`.
## See Also
* Golang - [Gocat](https://github.com/caius/gocat)
* Ruby - [Rbcat](https://github.com/caius/rbcat)
* Swift - [Swcat](https://github.com/caius/swcat)
## License
> The MIT License (MIT)
>
> Copyright (c) 2016 Caius Durling
>
> Permission is hereby granted, free of charge, to any person obtaining a copy
> of this software and associated documentation files (the "Software"), to deal
> in the Software without restriction, including without limitation the rights
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
> copies of the Software, and to permit persons to whom the Software is
> furnished to do so, subject to the following conditions:
>
> The above copyright notice and this permission notice shall be included in
> all copies or substantial portions of the Software.
>
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
> THE SOFTWARE.