From 64a35a58201474cb389c46337e45650cb7d7603e Mon Sep 17 00:00:00 2001 From: Hamcha Date: Wed, 9 Dec 2020 15:20:41 +0000 Subject: [PATCH] Delete 'better-cli.md' --- better-cli.md | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 better-cli.md diff --git a/better-cli.md b/better-cli.md deleted file mode 100644 index e734913..0000000 --- a/better-cli.md +++ /dev/null @@ -1,30 +0,0 @@ -# Better CLI tools - -- **What**: What is the tool for -- **OG**: Original tool -- **Better**: Better tool to use -- **Lang**: Language the tool is written in -- **Multi**: Works on all major platforms (Windows, Linux, Mac, \*BSD) - -| What | OG | Better | Lang | Multi | How to install | -| ------------------------- | -------- | --------- | ---- | ------------- | ---------------------------------- | -| Find text in files | grep | [ripgrep] | Rust | ✔️ | `cargo install ripgrep` | -| List files in a directory | ls | [exa] | Rust | ❌1 | `cargo install exa` | -| Read file content | cat | [bat] | Rust | ✔️ | Package manager (+ choco) | -| Find files by name | find | [fzf] | Go | ✔️ | Package manager (+ choco) | -| Count lines of code | cloc | [loc] | Rust | ✔️ | `cargo install loc` | -| Navigate/manipulate JSON | _N/A_ | [jq] | C | ✔️ | Package manager (+ choco) | -| Navigate/manipulate HTML | _N/A_ | [pup] | Go | ✔️ | `go get github.com/ericchiang/pup` | -| Static HTTP file server | _[many]_ | [ran] | Go | ✔️ | `go get -u github.com/m3ng9i/ran` | - -[ripgrep]: https://github.com/BurntSushi/ripgrep -[loc]: https://github.com/cgag/loc -[bat]: https://github.com/sharkdp/bat -[jq]: https://stedolan.github.io/jq/ -[pup]: github.com/ericchiang/pup -[fzf]: https://github.com/junegunn/fzf -[exa]: https://the.exa.website/ -[many]: https://gist.github.com/willurd/5720255 -[ran]: https://github.com/m3ng9i/ran - -1. `exa` doesn't compile on Windows