command-line-rust
Code for Command-Line Rust (O'Reilly, 2024, ISBN 9781098109417) (by kyclark)
bat
A cat(1) clone with wings. (by sharkdp)
command-line-rust | bat | |
---|---|---|
38 | 208 | |
1,788 | 53,355 | |
2.2% | 1.1% | |
6.2 | 9.3 | |
11 months ago | 5 days ago | |
Rust | Rust | |
MIT License | Apache License 2.0 |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
command-line-rust
Posts with mentions or reviews of command-line-rust.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-07-04.
-
Best path to learn rust
You absolutely must write programs, preferably using tests to ensure you are creating correct and reproducible code. May I suggest starting with my book, Command-Line Rust (O'Reilly, 2022). All the code/data/tests are in https://github.com/kyclark/command-line-rust Note that there are branches showing how to use the 4.x version of clap (command-line argument parser) rather than the 2.33 that was current when the book was published.
-
How to start learning a systems language
I think the best way to start learning a programming language is to write lots of small programs that you probably already know. Rust is a perfect command-line language, so I think it makes sense to start by implementing simple programs like "head" and "grep." I also think one should always learn to write and run tests, so I present my GitHub repo of inputs and tests you might like to use to write 14 such standard Unix command-line utilities: https://github.com/kyclark/command-line-rust If you want guidance on the language, I wrote a book called Command-Line Rust (O'Reilly, 2022) that explains all this code. One caveat is that the "clap" (command-line argument parser) module was at 2.33 when I published but is now v4, so you should look at the appropriate branches for versions of the programs that use the "builder" and "derive" patterns for that module. Or just use any old command-line parser you like as there's no requirement to use "clap." Best of luck to you!
-
What is the best way to learn Rust from a complete beginner programmer?
You must write programs in a language in order to learn it. I also firmly believe that learning how to write and run tests is critical to learning any language. I wrote Command-Line Rust (O'Reilly, 2022) for the beginner (in Rust, at least) and with a focus on writing and testing small programs from very simple "Hello, world!" and getting increasingly more complex. You can look at https://github.com/kyclark/command-line-rust for the code/inputs/tests. Best of luck!
-
Questions about moving from Bash to Rust
Code for the above book
-
Stuck at 4.3 of the rust book. It's so hard for me.
I'm the author of Command-Line Rust (O'Reilly, 2022), which I wrote to introduce the language slowly to beginners by writing and testing short, focused programs. You can look over the code/tests/data at https://github.com/kyclark/command-line-rust. Note that there are branches that show the same programs using a more recent version of the "clap" crate.
- Disappointing experience with 'Command-Line Rust': Seeking more comprehensive Rust resources
-
How do i get started with rust as my first language. I need tips and useful advice from rustians thanks.
I wrote Command-Line Rust (O'Reilly, 2022) to guide beginners in the language. You are challenged to write small functions and programs using tests to verify that everything is correct. You can look over the code and tests at https://github.com/kyclark/command-line-rust. Best of luck in your journey!
-
Learning rust by example
Here are the example programs from my book, Command-Line Rust (O'Reilly, 2022), along with the input files and tests: https://github.com/kyclark/command-line-rust
-
How to Practice and Learn Rust for Production Level Code?
I like to suggest that students write programs they already know (or at least understand). For instance, you probably understand that head shows the first few lines of a text file, and you probably can already implement some version of that in one or two languages you know. Try that in Rust. I wrote 14 BSD/GNU command-line utilities in Rust for learning purposes. I wouldn't consider these high-performance/production programs as they are tailored to learning the language. I also stress how to test programs, so there are tests and inputs you can use to verify your programs match the output of the original programs (or you can modify these to suit your own tastes for how you would like them to work). https://github.com/kyclark/command-line-rust
-
Error handling in a CLI app
Here are some more examples you may or may not find useful: https://github.com/kyclark/command-line-rust I tend to have a main() that calls a library's run() function that returns a Result and then exit with a nonzero code and error message on a failure.
bat
Posts with mentions or reviews of bat.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2025-04-09.
- Bat: Cat with Syntax Highlighting
-
Man pages are great, man readers are the problem
I page man (and many other things) through bat[0] which improves my experience.
[0]: https://github.com/sharkdp/bat
-
What to do when your git worktree is not detecting file changes
my cat replacement (bat), shows the changed lines
-
bat VS kat - a user suggested alternative
2 projects | 13 Mar 2025
- Rewriting essential Linux packages in Rust
- Core Git Developers Configure Git
-
Effortlessly Manage Your Notes with my Bash Script Featuring FZF Integration!
bat (for enhanced preview in search)
-
Wombat - Syntax Highlighting with Rust's Bat Called from Crystal
Have you heard of the command-line tool bat, written in Rust? bat is a command-line tool similar to cat that displays file contents in the terminal, but with additional features like line numbering, syntax highlighting, and paging.
-
17 Essential CLI Tools to Boost Developer Productivity
bat
-
Hyperfine: A command-line benchmarking tool
Perhaps interesting (for some) to note that hyperfine is from the same author as at least a few other "ne{w,xt} generation" command line tools (that could maybe be seen as part of "rewrite it in Rust", but I don't want to paint the author with a brush they disagree with!!): fd (find alternative; https://github.com/sharkdp/fd), bat ("supercharged version of the cat command"; https://github.com/sharkdp/bat), and hexyl (hex viewer; https://github.com/sharkdp/hexyl). (And certainly others I've missed!)
Pointing this out because I myself appreciate comments that do this.
For myself, `fd` is the one most incorporated into my own "toolbox" -- used it this morning prior to seeing this thread on hyperfine! So, thanks for all that, sharkdp if you're reading!
Ok, end OT-ness.
What are some alternatives?
When comparing command-line-rust and bat you can also consider the following projects:
pipe-rename - Rename your files using your favorite text editor
fzf - :cherry_blossom: A command-line fuzzy finder
argparse - Argument Parser for Modern C++
delta - A syntax-highlighting pager for git, diff, grep, and blame output
book - The Rust Programming Language
exa - A modern replacement for ‘ls’.