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
- Host: GitHub
- URL: https://github.com/property404/dagan-utils-rs
- Owner: Property404
- License: apache-2.0
- Created: 2025-11-08T19:26:23.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-11-08T20:20:51.000Z (7 months ago)
- Last Synced: 2025-11-08T22:12:53.301Z (7 months ago)
- Language: Rust
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.APACHE
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
```