moreutils VS pipe-rename

Compare moreutils vs pipe-rename and see what are their differences.

moreutils

moreutils is a growing collection of the unix tools that nobody thought to write long ago when unix was young. Read-only version of `git://git.joeyh.name/moreutils` (by pgdr)

pipe-rename

Rename your files using your favorite text editor (by marcusbuffett)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
moreutils pipe-rename
19 9
2 385
- -
0.0 4.6
over 1 year ago 6 days ago
Shell Rust
GNU General Public License v3.0 only 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.

moreutils

Posts with mentions or reviews of moreutils. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-09.
  • Pipexec – Handling pipe of commands like a single command
    6 projects | news.ycombinator.com | 9 Mar 2024
    I use mutlios and even I'm not that attached to it. The majority of my use is combined with process substitution, and could be replaced with common-ish tools like pee¹ or pipexec for more complex cases. The only occasion when I'm thankful for it is if I want to use a shell function as a target, but there are workarounds for that too.

    As a noclobber user the footgun is largely hidden to me, but I feel its presence. multios without globbing support would be less useful, but would still work for most of my use cases. Scanning my shell history I see various cases of relying on zsh's ability to apply sorting and filtering to globs with multios' input redirection, but only a couple where I want that in output redirection.

    Even with multios unset the behaviour is different between zsh and bash. For example, multios disables all the expansion, so zsh behaves like more like dash with ': >t{1,2}' by creating a file instead producing an error like bash does.

    [FWIW, I google'd multiios to link the option in original comment. It really feels to me like it needs double-i, and I read the single i name the same way you do.]

    ---

    I'd be one of those people whose desire for dgsh-like functionality wanes. If it was slight DSL that I could "upgrade" pipelines to I'd probably use it, but not enough to warrant working on it or switching other tooling to support it.

    The end of result of this morning's pipeline was breaking my jobs up, and applying some judicious use of nq² to keep track of it. I'd follow your advice and move on to more specialist tools if the job grew significantly or if it became a regular occurrence.

    ¹ https://joeyh.name/code/moreutils/

    ² https://git.vuxu.org/nq/about/

  • Show HN: Simple Script for Enhanced LLM Interaction in Vim
    3 projects | news.ycombinator.com | 16 Dec 2023
  • The shell and its crappy handling of whitespace
    3 projects | news.ycombinator.com | 30 Jul 2023
    For filesystem operations like batch renames at least, I am usually happy with `vidir` (part of `moreutils`: https://joeyh.name/code/moreutils/).

    `vidir [path]` will open an editor with the given directory as buffer contents.

  • Show HN: LineSelect, shell utility to interactively select lines in a pipeline
    5 projects | news.ycombinator.com | 5 Jul 2023
    See also: "vipe" from the excellent "moreutils" package: https://joeyh.name/code/moreutils/

    There are some other gems in this package. The ones I find myself using regularly are 'ts' and 'sponge' but I'm sure the useful subset depends a lot on the kind of work you are doing

  • Vim Keybindings Everywhere – The Ultimate List
    11 projects | news.ycombinator.com | 4 May 2023
    Joey Hess' excellent moreutils¹ comes with vipe which is a generalised solution for these types of tasks. It allows you to run whatever $EDITOR you've configured mid-pipe, making it possible to work your changes up in an interactive editor session. Useful for those of us not smart enough to write up our changes as a series of -c arguments ;)

    (It fixes the vim issue by virtue of using a temporary file to do the magic)

    ¹ https://joeyh.name/code/moreutils/

  • vimv has not only changed my workflow, it changed my life
    4 projects | /r/linux | 15 Mar 2023
    Sounds like `vidir` from moreutils.
  • What "nice-to-have" CLI tools do you know?
    33 projects | /r/linuxquestions | 14 Feb 2023
    vidir and a few others from moreutils
  • rtl_fm - record and also output audio on a speaker (Raspberry pi?)
    1 project | /r/RTLSDR | 24 Dec 2022
    Use pee (yes, I know) from moreutils. Something like:
  • How to re-order the strings of a filename in bulk?
    1 project | /r/zsh | 6 Nov 2022
    I would use vidir from moreutils. Then you can do any edits and play around with any regexes you want!
  • Should i learn file management using terminal?
    1 project | /r/linuxmasterrace | 21 Aug 2022
    For bulk file renaming, I recommend vidir from moreutils - it lets you rename everything in a directory with your $EDITOR (vim being the default).

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.
  • Newbie to powershell, need help I want to remove the words “Supplemental Reading” from all files at once what would be the correct command line to do so
    1 project | /r/commandline | 24 Oct 2022
    On Linux, I'd use this: github.com/marcusbuffett/pipe-rename
  • 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 moreutils and pipe-rename you can also consider the following projects:

atomicxt

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

map.xplr - Visually inspect and interactively execute batch commands using xplr

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

lineselect - Shell utility to interactively select lines from stdin

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

fstring - Make searching for text strings easier on Linux :)

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

vidir - edit directory in $EDITOR (better than vim . with netrw)

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

evenmoreutils - A collection of command line tools to extend the shell environment.

alacritty - A cross-platform, OpenGL terminal emulator.