From 6167c8c2ca240b77c41fd0288cec12d859c5c2bc Mon Sep 17 00:00:00 2001 From: _ <_@_> Date: Fri, 21 Mar 2025 12:01:13 -0500 Subject: [PATCH] add readme --- Cargo.toml | 1 + README.md | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 README.md diff --git a/Cargo.toml b/Cargo.toml index 58e84b4..bc03311 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/README.md b/README.md new file mode 100644 index 0000000..ba38c78 --- /dev/null +++ b/README.md @@ -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)