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

https://github.com/property404/dagan-utils-rs

Rust utilities for dagans
https://github.com/property404/dagan-utils-rs

Last synced: 5 months ago
JSON representation

Rust utilities for dagans

Awesome Lists containing this project

README

          

# Dagan Utils (The ones written in Rust)

See for Python and shell scripts

## Line

Show specific lines in a file:

```
$ seq 1 10 | line 5
5
$ seq 1 10 | line 5,8
5
8
$ seq 1 10 | line 2..4
2
3
```

## sss - Standard Stream Split

Pipe stdin to both stdout and stderr. Used to inspect piped commands

```
$ echo hello | sss | rev
hello
olleh
```