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

https://github.com/frewsxcv/rcat

Concatenate and print files in a Rust byte slice compatible format.
https://github.com/frewsxcv/rcat

cat rust

Last synced: 8 months ago
JSON representation

Concatenate and print files in a Rust byte slice compatible format.

Awesome Lists containing this project

README

          

# rcat

Concatenate and print files in a Rust byte slice compatible format.

## Install

```
cargo install rcat
```

## Usage

```
$ cat foo.txt
Hello world! 👋🌎
$ rcat foo.txt
Hello world! \xf0\x9f\x91\x8b\xf0\x9f\x8c\x8e\n
$ rcat --quote foo.txt
b"Hello world! \xf0\x9f\x91\x8b\xf0\x9f\x8c\x8e\n"
```