bash-modules VS murex

Compare bash-modules vs murex and see what are their differences.

murex

A smarter shell and scripting environment with advanced features designed for usability, safety and productivity (eg smarter DevOps tooling) (by lmorg)
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
bash-modules murex
7 55
122 1,370
- -
0.0 9.6
about 2 years ago 9 days ago
Shell Go
GNU Lesser General Public License v3.0 only GNU General Public License v3.0 only
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.

bash-modules

Posts with mentions or reviews of bash-modules. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-03-11.
  • Write Posix Shell
    10 projects | news.ycombinator.com | 11 Mar 2023
    Bash is turing-complete, so it's possible to write automated test cases in bash. Example: https://github.com/vlisivka/bash-modules/blob/master/bash-mo...
  • Shell Script Best Practices, from a decade of scripting things
    19 projects | news.ycombinator.com | 27 Oct 2022
    Template in article is awful. It's better to use this one, which is a real CLI tool: https://github.com/vlisivka/bash-modules/blob/master/bash-mo...
  • Show HN: A plain-text file format for todos and check lists
    34 projects | news.ycombinator.com | 1 Apr 2022
    IMHO, you are mixing TODO lists and task management/planning software. No, I don't know a good task manager or business process manager for command line. Instead, I created a simpler TODO list manager, called `td`[0], which supports flat TODO lists only, and use directories and command-line generators to manage todo's. `td` prints top item only, by default, leaving little room for procrastination. I'm keeping one `TODO.md` file per project instead of one large TODO file for all todo's.

    [0]: https://github.com/vlisivka/bash-modules/blob/master/bash-mo...

  • bash-modules 4.0.1
    1 project | /r/bash | 11 Feb 2022
    Documentation: http://vlisivka.github.io/bash-modules/ Project home page: https://github.com/vlisivka/bash-modules
  • Bash-Modules 4.0
    1 project | news.ycombinator.com | 4 Jul 2021
  • Bash function names can be almost anything
    4 projects | news.ycombinator.com | 4 Jul 2021
    I'm preparing to release bash-modules 4.0 [0]. Can you give me feedback, please? I'm a non-native English speaker, so I need someone to help fix spelling mistakes, at least.

    https://github.com/vlisivka/bash-modules

  • Clojure REPL vs. CLI: IDE Wars
    4 projects | news.ycombinator.com | 1 Jul 2021
    It works in my shell. :-/ It looks like you forgot to insert `false` command.

    You are pointing to the problem with -e not working in subshell/deep functions, because of POSIX. Right? It's described in bash documentation: http://www.gnu.org/software/bash/manual/html_node/The-Set-Bu...

    > I think just defining a die() function and using it after any command that must succeed is more verbose, but less error prone:

    Yep. It's the style I developed 12 years ago, when working at Bazaarvoice, when I was lead of devops team. I created the whole library for bash, to use this pattern consistently. See https://github.com/vlisivka/bash-modules#error-handling

murex

Posts with mentions or reviews of murex. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-16.
  • Show HN: a Rust Based CLI tool 'imgcatr' for displaying images
    12 projects | news.ycombinator.com | 16 Apr 2024
    This is how murex works too https://github.com/lmorg/murex/blob/master/config/defaults/p...
  • Xonsh: Python-powered, cross-platform, Unix-gazing shell
    12 projects | news.ycombinator.com | 14 Feb 2024
  • The Bun Shell
    17 projects | news.ycombinator.com | 20 Jan 2024
    I agree. I’ve written about this before but this is what murex (1) does. It reimplements some of coreutils where there are benefits in doing so (eg sed, grep etc -like parsing of lists that are in formats other than flat lines of text. Such as JSON arrays)

    Mutex does this by having these utilities named slightly different to their POSIX counterparts. So you can use all of the existing CLI tools completely but additionally have a bunch of new stuff too.

    Far too many alt shells these days try to replace coreutils and that just creates friction in my opinion.

    1. https://murex.rocks

  • Jaq – A jq clone focused on correctness, speed, and simplicity
    28 projects | news.ycombinator.com | 29 Nov 2023
    This is exactly what Murex shell does. It has lots of builtin tools for querying structured data (of varying formats) but also supports POSIX pipes for using existing tools like `jq` et al seamlessly too.

    https://murex.rocks

  • Murex rocks v5 is out
    1 project | news.ycombinator.com | 7 Sep 2023
  • The Case for Nushell
    7 projects | news.ycombinator.com | 30 Aug 2023
    Stable is a problem because a lot of these shells don’t offer any guarantees for breaking changes.

    My own shell, https://github.com/lmorg/murex is committed to backwards compatibility but even here, there are occasional changes made that might break backwards compatibility. Though I do push back on such changes as much as possible, to the extent that most of my scripts from 5 years ago still run unmodified.

  • Murex
    1 project | /r/devopspro | 23 Jun 2023
  • FLaNK Stack Weekly for 20 June 2023
    34 projects | dev.to | 20 Jun 2023
  • Show HN: A smarter Unix shell and scripting environment
    1 project | /r/hypeurls | 13 Jun 2023
  • Nushell.sh ls – where size > 10mb – –sort-by modified
    7 projects | news.ycombinator.com | 12 Mar 2023
    This is similar to how my shell works. It still just passes bytes around but additionally passes information about how those bytes could be interpreted. A schema if you will. So it works as cleanly with POSIX / GNU / et al tools as it does with fancy JSON, YAML, CSV and other document formats.

    It basically sits somewhere between Powershell and Bash: typed pipelines like Powershell but without sacrificing familiarity with all the CLI commands you already use day in and day out.

    https://github.com/lmorg/murex

    As an aside, I’m about to drop a massive update in the next few days that will make the shell even more intuitive to use.

What are some alternatives?

When comparing bash-modules and murex you can also consider the following projects:

dotfiles - Bootstrap neovim/zsh/tmux environment for Ruby on Rails development

elvish - Powerful scripting language & Versatile interactive shell

mg.sh - Mitigram's shell library of reusable script snippets

nushell - A new type of shell

xit - A plain-text file format for todos and check lists

tidy-viewer - 📺(tv) Tidy Viewer is a cross-platform CLI csv pretty printer that uses column styling to maximize viewer enjoyment.

ShellCheck - ShellCheck, a static analysis tool for shell scripts

fx - Terminal JSON viewer & processor

music-explorer - A music scraper, navigator, archiver, and cataloger for people looking for new sounds.

jc - CLI tool and python library that converts the output of popular command-line tools, file-types, and common strings to JSON, YAML, or Dictionaries. This allows piping of output to tools like jq and simplifying automation scripts.

ConsoleJournal

xonsh - :shell: Python-powered, cross-platform, Unix-gazing shell.