this post was submitted on 21 Sep 2023
51 points (100.0% liked)

Free and Open Source Software

17814 readers
26 users here now

If it's free and open source and it's also software, it can be discussed here. Subcommunity of Technology.


This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] smeg@feddit.uk 1 points 1 year ago (2 children)

Genuine question: why not use grep, awk, sed, or any of the other gnu tools that can already do that?

[–] colournoun@beehaw.org 1 points 1 year ago (1 children)

You could, but maybe a good shell makes it easier than the external tool. Or maybe you use the shell to effectively combine the inputs and outputs of the other tools.

[–] smeg@feddit.uk 1 points 1 year ago (1 children)

I guess that's convenient if you're only ever on one machine, I prefer commands that work (almost) everywhere!

[–] colournoun@beehaw.org 2 points 1 year ago

Me too. I could never get into nushell or fish because they’re not posix and I don’t need to learn two ways to do something.

[–] SWW13@lemmy.brief.guru 1 points 1 year ago

That's what I meant, using your shell to run command line tools to solve your issue at hand. And having a powerful shell with e.g. context dependend autocomplete (and a lot more) helps to speed up that task.