add readme

main
_ 2025-03-21 12:01:13 -05:00
parent 94d4845409
commit 6167c8c2ca
2 changed files with 25 additions and 0 deletions

View File

@ -4,6 +4,7 @@ categories = ["command-line-utilities"]
description = "ls + cat == lk"
name = "look_at_that"
license = "AGPL-3.0"
repository = "https://six-five-six-four.com/git/reactor/look_at_that"
version = "0.1.0"
edition = "2024"

24
README.md Normal file
View File

@ -0,0 +1,24 @@
Has this ever happened to you?
```text
$ ls src
main.rs
$ ls src/main.rs
src/main.rs
```
There's finally a better way!
```text
$ lk src
main.rs
$ lk src/main.rs
use anyhow::{Context ...
```
`lk`, (pronounced "look"), combines `ls` and `cat` into a single command for interactive file browsing.
- [crates.io](https://crates.io/crates/look_at_that)
- [Source code](https://six-five-six-four.com/git/reactor/look_at_that)