Comment by Otek

Comment by Otek 19 hours ago

5 replies

This is 2023 article. As with most “modern tools” half of them probably already have some newer, shinier and more trendy replacements

antegamisou 16 hours ago

I find the opposite to be true. Most of these are really just reinventing the wheel of foundational GNU tools that are really powerful provided one has spent some time on them.

  • Johanx64 16 hours ago

    It's like people dont even know why people use or want these "modern" tools. It's called "sane defaults", and improved UX.

    Those "foundational GNU tools" just suck, sure, people are familiar with them and they are everywhere, but they just plain suck.

    For many common operations you'd want to do by default with grep/find and so on, you have to type mountains of random gibberish to get it done. And that random gibberish isn't something that rolls of your tongue either, thus at minimum you'd define truckload of aliases.

    OR you can use a tool(s) that has marginally "sane defaults" and marginally sane UX out of the box.

    It really isn't that complicated. This has nothing to do with "rust".

    • esafak 14 hours ago

      Some people just like torturing themselves with spells like

         perl -ne 'map{$h{lc$_}++}/(\w+)/g;END{map{print"$h{$_} $_\n"}sort{$h{$b}<=>$h{$a}}keys%h}'