After watching this video, I’m tempted to give it a try myself. The idea of swapping out traditional CLI tools for Rust-based alternatives is intriguing, and I’m curious to know if anyone has undertaken such an endeavor.

I’m also on the lookout for dotfiles that primarily feature configurations for Rust tools. I find it both educational and entertaining to explore other people’s configurations. I stumbled upon this repository, but I’m interested in discovering more if possible.

  • intrepid@lemmy.ca
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    9 months ago

    Like many others, I don’t replace old tools with new ones, simply because it is written in Rust. For example, fzf is a very novel and useful tool that’s written in Go. (FYI: Fzf has a Rust alternative called skim). I’m going to restrict the rest of the post to the context of this thread - Rust CLI/TUI programs that I like. But by no means are they the only new ones I like, or always a replacement for the old ones.

    fd and ripgrep (rg) have 2 things in common that give them edge over their older counterparts. First is that both are extremely fast compared to their predecessors. Second is that both support a modern (perl-compatible) version of regex syntax that many programming languages support.

    Zellij is a terminal multiplexer like Tmux. However, Zellij IMO has one huge advantage over Tmux and screen - you don’t need to take a tutorial or read a user guide just to get started. Everything is discoverable and intuitive. Zellij has the potential to replace TMux as the dominant terminal multiplexer in the near future.

    You may find zoxide, atuin and starship as good extensions to your terminal experience, depending on your tastes. Zoxide is a smart directory changer (alt for cd) with good integration all around - with a lot of shells, alternatives (data import), editors (emacs, nvim, etc), file browsers (ranger, nnn, etc) and even mail client (aerc). Atuin replaces the history part of GNU Readline. But lately, it has started gaining features not found in readline, like encrypted history and cross-device history sync. Starship may be a bit fancy for shell prompts - but I find its configuration format to be simpler than the old method. It also supports several shells giving you a uniform experience across shells.

    GPG-TUI is a TUI frontend to GnuPG. It’s useful simply because the GnuPG UI is terrible. Meanwhile, Sequoia PGP is a tool that aims to replace GnuPG altogether. It has some lofty ambitions and has forced the OpenPGP ecosystem to advance a bit. Some of their innovations aim to solve the drawbacks of old OpenPGP - like lack of PKI (instead of just WoT) and Perfect forward secrecy in certain modes. Its defaults are also more sane and modern compared to GnuPG.

    Git-UI (Rust) and LazyGit (Go) are TUI frontends for Git - they have no alternatives. I can recommend either of them if you are a heavy user of git - especially interactive staging and interactive rebasing. Meanwhile, git-interactive-rebase-tool is a tool specifically designed to manage interactive rebases.

    If you are into coding, you may find Tokei useful. It is tool for counting Lines of code (LoC) in your projects, segregated by language. Hyperfine, from the developer of fd, is used to benchmark applications over several runs, with a lot of configuration options. Bat is a terminal pager, again from the developer of fd. It supports syntax highlighting. I often find uses for that. I’m not aware of another tool with the exact same functionality.

    Finally, nushell is showing a lot of promise as a shell with more modern features. It extends the structured data paradigm from powershell.

    • intrepid@lemmy.ca
      link
      fedilink
      arrow-up
      1
      ·
      9 months ago

      Forgot to mention stacked-git (stg). This is a tool to deal with patch stacks - much like the age old quilt tool often used by kernel hackers. Unlike quilt, stg uses git to manage a stack of patches. This tool was originally written in Python. It was recently rewritten in Rust by the same team.

      Having used stg, it’s like having multiple staging indexes in git. This allows you to craft a good commit history like the one you get from using interactive rebasing. Unlike interactive rebasing, you don’t have to wait till finishing the feature, in order to achieve that result. If you are a git user and haven’t given stg a try yet, I strongly recommend you do. It’s a nice tool to have in your development tool chest.

    • Spore@lemmy.ml
      link
      fedilink
      arrow-up
      1
      ·
      9 months ago

      Note that skim performs worse than fzf. There’s a new matcher in Rust called nucleo which is faster, but it currently doesn’t have a cli and can only be used inside Helix editor (hx)

      nu is probably the best shell for ad-hoc data processing, handling all my daily needs in one expression.

      fd and rg have another thing in common, that they’re both 50% shorter than their traditional alternatives /s

      • dino@discuss.tchncs.de
        link
        fedilink
        English
        arrow-up
        1
        ·
        8 months ago

        nu is probably the best shell for ad-hoc data processing, handling all my daily needs in one expression.

        I am really struggling with this, I heard about nu shell some time ago, but the fact that you had to learn some form of new language made me reluctant to actually try it. As a fisher user I want to have sane usable defaults, without having to learn just another programming language for a “tool”.

        What am I missing?

        • Spore@lemmy.ml
          link
          fedilink
          arrow-up
          2
          ·
          edit-2
          8 months ago

          It kinda fills a niche.

          I use fish for simple command pipelines as well. But traditional shells are not as good when I need to do anything “structured”, because they treats almost any value as a string and don’t have anonymous functions. The first problem means that you have to parse a string again and again to do anything useful, the second means that when both pipe and xargs fails you are doomed.
          Nu solves both of the big problems that matters when you want to do rather complex but ad-hoc processing of data. And with a rather principled design, nu is very easy to learn (fish is already way better than something POSIX like bash though).

          Personally another important reason is that I have a Windows machine at work and nushell is much easier than pwsh.

          Btw fish is also going to be a “tool in rust” soon :)

    • d_k_bo@feddit.de
      link
      fedilink
      arrow-up
      1
      ·
      9 months ago

      Microsoft already uses ripgrep in vscode which they distribute as a proprietary build.

        • Oisteink@feddit.nl
          link
          fedilink
          arrow-up
          0
          ·
          9 months ago

          Their own - did you read up on their status reports so far this year?

          What’s your take on freebsd and how development and the system is going. Are they ruined by exploitation?

          • OsrsNeedsF2P@lemmy.ml
            link
            fedilink
            arrow-up
            0
            ·
            edit-2
            9 months ago

            Given the long history of companies not upstreaming to BSD (WindRiver, PlayStation, Apple), I would say yea, it’s fairly obvious BSDs are exploited? Imagine for a moment if iOS was GPL.

            You might see short term gains because companies can innovate without giving back but yeah, definitely not the kind of stuff I want to support.

            • Oisteink@feddit.nl
              link
              fedilink
              arrow-up
              1
              ·
              9 months ago

              Exploited? This is what the license is made for. You can take freebsd and do what you like - it’s free as in air, no strings attached other than the licence text.

              You might not understand why the authors use MIT-like licensing

      • TheOPtimal@lemmy.blahaj.zone
        link
        fedilink
        ქართული
        arrow-up
        1
        ·
        9 months ago

        FreeBSD has over and over again been taken advantage of by companies that haven’t contributed virtually anything back.

  • pixelscript@lemmy.ml
    link
    fedilink
    English
    arrow-up
    0
    ·
    9 months ago

    If the current tools work fine, have decades of historic support and battle testing, and the alternatives offer little to no net benefit, uhh, why?

    • ShustOne@lemmy.one
      link
      fedilink
      arrow-up
      0
      arrow-down
      1
      ·
      9 months ago

      Battle hardened > new

      Unless the new has a killer feature set worth the trade off in potential bugs

      • broface@lemm.ee
        link
        fedilink
        arrow-up
        1
        ·
        9 months ago

        I think that’s fair.

        Eventually, the Rust-alternatives will be battle-hardened too and we can simply choose what suits us best.

        It’s a good time for software, honestly.

  • kevin@mander.xyz
    link
    fedilink
    arrow-up
    0
    ·
    edit-2
    9 months ago

    Yes. The only things I use regularly that aren’t aliased to or replaced by a rust-built tool are mkdir, ln, and rsync.

    • cd: zoxide
    • ls: eza
    • cat: bat
    • grep: ripgrep
    • find: fd
    • sed: sd
    • du: dust
    • top/htop: btm
    • vi: helix
    • tmux: zellij (or wezterm mux)
    • diff: delta
    • ps: procs

    Probably some others I’m forgetting

        • Free Palestine 🇵🇸@sh.itjust.works
          link
          fedilink
          arrow-up
          1
          ·
          8 months ago

          Some general things: Both Tmux and Neovim have such broad plugin ecosystems, helix and zellij don’t even come close.

          For zellij specifically: I don’t like the UI, it’s just way too much stuff on the screen, it’s distracting. Tmux tries to stay out of the way and only displays something if it’s absolutely necessary. You can also configure everything yourself.

          Regarding helix: As a long time Vim/Emacs-evil user I just can’t get used to stuff like Kakoune or Helix, it just feels weird.

          • dino@discuss.tchncs.de
            link
            fedilink
            English
            arrow-up
            1
            ·
            8 months ago

            The thing is, helix has useable defaults, you dont need plugins, thats the whole point for me. Keeping plugins up to date across machines and making sure they work is just tiresome. In terms of tmux/zellij can’t say much, but I never got used to tmux because the controls seem unintuitive. Tested zellji just briefly and it seems it tries to show you the controls instead of hiding them, which is helpful if you are trying to get used to something.

    • I have a strong bias for staying with tools that are installed by default. After this many years working with new systems of my own, containers, and systems where I’m not root, the added value of an alternativehas to be quite high for me to switch a core utility.

      Thay said, I’ve found fd, ripgrep, and helix to meet that criteria. The others, not so much; they either don’t improve upon or add functionality that’s not available, or simply add eye candy. Gaining pretty colors is nice, but not worth losing familiarity with ubiquitous tools.

      git-delta is an exception where the syntax highlighting can make a functional difference in code diffs. Not so much that I think about installing it, or using it outside of indirect VCS configuration, but it is a good example of using style for more than just eye candy. I prefer difftastic, but they do much the same.

      While it’s not a replacement for an existing tool and isn’t in your list, nnn is very helpful in many cases, especially bulk renames and reorganizations.

      • dino@discuss.tchncs.de
        link
        fedilink
        English
        arrow-up
        1
        ·
        8 months ago

        While it’s not a replacement for an existing tool and isn’t in your list, nnn is very helpful in many cases, especially bulk renames and reorganizations.

        Can you give an example on the reorganization benefits with nnn? I am using it myself but I still feel like a noob with it.

        • So, I did a whole asciinema demonstration to show you, but it was getting tedious. It started to turn into a whole tutorial, and I really didn’t want to go there. That’s why it’s taken so long for me to reply.

          But there are three things I do with nnn:

          • move things. I use the tabs (1-4) to open different directories, space-select multiple items, and ‘v’ to move selected items to directories
          • bulk rename. Again, space-select and ctrl-r to bulk rename. Often, I don’t even select, I just ‘R’ to bulk rename the whole directory. This opens my text editor with all of the file/Dir names; edit freely, save, exit, and nnn renames whatever changed.
          • move/copy to remote locations. With ‘c’ nnn can mount a remote directory over ssh in a tab, and it works just like a local directory, with copying, moving, and renaming seamlessly between tabs.

          I don’t “live” in nnn; it’s a tool I open when I want to do certain things - it’s fast enough to use this way. But you certainly could, since nnn can fork shell processes in selected directories.

      • kevin@mander.xyz
        link
        fedilink
        arrow-up
        0
        ·
        9 months ago

        they either don’t improve upon or add functionality that’s not available, or simply add eye candy. Gaining pretty colors is nice, but not worth losing familiarity with ubiquitous tools.

        The thing I like about a lot of these is that I don’t lose familiarity with existing tools. When I end up on a cluster that doesn’t have them, I’m a bit annoyed, but I can still operate just fine.

        The principle exception to this is actually fd - I now find find (har!) almost unusable without having a man page open in a separate terminal. But that’s because fd is so much more ergonomic and powerful, I would never give it up unless forced.

        • I unfortunately do not have your crystaline perfect recall. I used vi/m for nearly 20 years before drifting onto kakoune and now helix; I’ve been using them for about a year, and it’s getting harder and harder to not make reflexive mistakes when I’m trying to use vim. sed was already odd with regex escaping (parens but not brackets? Why??), and I know the less I use it the more I’ll forget. This is crippling when I have to work on a system that doesn’t have these new tools installed.

          • kevin@mander.xyz
            link
            fedilink
            arrow-up
            1
            ·
            9 months ago

            What I mean is that many of them have basically the same functionality with the same arguments. I don’t mean I have pristine memory for the differences, but things like alias ls="eza" is basically a drop in replacement with some added features. So when I’m on a server without it, everything is basically the same, just less fancy.

            Helix and fd are an example of the other pattern - they are huge improvements over existing tools, to the point that when I’m forced to use the basic ones, I’m actively crippled. But as an argument not to use the better tool day-to-day, this doesn’t make sense to me. Why would I force myself to suffer 95% of the time to save myself from suffering 5% of the time?

            I mean, for helix/vi it’s even clearer. Vanilla vi is basically unusable for me anyway, and I needed a huge number of plugins to be serviceable - on a basic cluster environment, I’m going to be crippled anyway, so…