command-line-rust VS pipe-rename

Compare command-line-rust vs pipe-rename and see what are their differences.

command-line-rust

Code for Command-Line Rust (O'Reilly, 2022, ISBN 9781098109417) https://learning.oreilly.com/library/view/command-line-rust/9781098109424/ (by kyclark)

pipe-rename

Rename your files using your favorite text editor (by marcusbuffett)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
command-line-rust pipe-rename
38 9
1,245 379
- -
7.1 6.3
9 days ago 4 months ago
Rust Rust
MIT License -
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.

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
    3 projects | /r/rust | 4 Jul 2023
    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
    7 projects | /r/rust | 17 May 2023
    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?
    3 projects | /r/rust | 1 May 2023
    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
    2 projects | /r/learnprogramming | 23 Apr 2023
    Code for the above book
  • Stuck at 4.3 of the rust book. It's so hard for me.
    5 projects | /r/rust | 23 Apr 2023
    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
    5 projects | /r/rust | 8 Apr 2023
  • How do i get started with rust as my first language. I need tips and useful advice from rustians thanks.
    2 projects | /r/rust | 7 Mar 2023
    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
    2 projects | /r/rust | 5 Mar 2023
    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?
    4 projects | /r/rust | 20 Feb 2023
    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
  • Examples from Command-Line Rust Book in Clap 4 Derive API [Blog Post] [Beginners]
    2 projects | /r/rust | 8 Feb 2023
    Yes, u/hunkamunka already wrote me, forgot to include the link. He created a clap 4 branch here. However, it still uses the builder API. I did this mostly as a learning experience for myself but I think it would be cool to have the examples from the book in both.

pipe-rename

Posts with mentions or reviews of pipe-rename. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-07-04.
  • Need a Rename Utility
    4 projects | /r/MacOS | 4 Jul 2022
    if you like vim syntax, you might enjoy pipe-renamer. The file list is opened in a text editor, and names actually get modified on 'write'. You can do complex things and see the final result before executing anything.
  • How to manage files using xplr
    9 projects | dev.to | 11 Jun 2022
    Press r to rename and ctrl-d to duplicate the path under focus. By default, xplr uses mv to rename and cp to duplicate files. To rename or duplicate multiple paths at-once, you will need to select the paths and invoke the shell by typing : ! and run a custom command on the paths listed in the $XPLR_PIPE_SELECTION_OUT file. Or you can use tools like vidir or pipe-rename. See the batch rename hack.
  • A list of new(ish) command line tools – Julia Evans
    56 projects | news.ycombinator.com | 12 Apr 2022
    I really like the approach of pipe-rename (https://github.com/marcusbuffett/pipe-rename) for renaming many files. It's especially convenient for people who can efficiently edit many files in their favorite text editor (so everybody here, I guess).

    Main problem: you maybe don't do this kind of operation frequently enough to remember how it's called or how you aliased it.

  • Looking for some small rust projects with an elegant code base that I can study.
    11 projects | /r/rust | 16 Mar 2022
  • Seeking a terminal file manager
    5 projects | /r/linuxquestions | 23 Aug 2021
    I was making one then I found the marvelous pipe-rename and I decided I wouldn't be able to do better.
  • Awesome Rewrite It In Rust - A curated list of replacements for existing software written in Rust
    62 projects | /r/rust | 27 May 2021
    sad CLI search and replace | Space Age seD tcount Count your code by tokens, types of syntax tree nodes, and patterns in the syntax tree. A tokei/scc/cloc alternative. nushell A new type of shell fclones Efficient Duplicate File Finder hunter The fastest file manager in the galaxy! teip Select partial standard input and replace with the result of another command efficiently cb Command line interface to manage clipboard semiuniq A uniq-like tool for removing nearby repeated lines in a file" dua-cli View disk space usage and delete unwanted data, fast. htmlq Like jq, but for HTML. pipecolor A terminal filter to colorize output crowbook Converts books written in Markdown to HTML, LaTeX/PDF and EPUB delta A viewer for git and diff output mdcat cat for markdown pueue Manage your shell commands. gitui Blazing 💥 fast terminal-ui for git written in rust 🦀 pipr A tool to interactively write shell pipelines. rename Rename your files using your favorite text editor bropages Highly readable supplement to man pages from http://bropages.org. Shows simple, concise examples for commands with syntax highlighting. html2md convert simple html documents into markdown bk Terminal Epub reader rs A safe Rust crate for working with the Wayland clipboard. viu Simple terminal image viewer written in Rust. alacritty A cross-platform, OpenGL terminal emulator. wezterm A GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust
  • Vimv: a command line utility for batch-renaming files from the comfort of your favourite text editor
    2 projects | /r/rust | 25 Feb 2021
    Is it different from https://github.com/marcusbuffett/pipe-rename ?
  • F2 — a CLI tool to batch rename files and directories quickly and safely
    2 projects | /r/commandline | 23 Feb 2021
    Here's a brilliant alternative I use for renaming many files without learning a new syntax: https://github.com/marcusbuffett/pipe-rename

What are some alternatives?

When comparing command-line-rust and pipe-rename you can also consider the following projects:

argparse - Argument Parser for Modern C++

f2 - F2 is a cross-platform command-line tool for batch renaming files and directories quickly and safely. Written in Go!

rage - A simple, secure and modern file encryption tool (and Rust library) with small explicit keys, no config options, and UNIX-style composability.

code - Source code for the book Rust in Action

stitch - Communication between threads in a reactive, real-time safe manner.

ripgrep - ripgrep recursively searches directories for a regex pattern while respecting your gitignore

chess-tactics-cli - A tactics trainer for the command line

alacritty - A cross-platform, OpenGL terminal emulator.

book - The Rust Programming Language

nushell - A new type of shell

pico-args - An ultra simple CLI arguments parser.

vimv - A command line utility for batch-renaming files.