17
it's just the worst (lemmy.world)
top 50 comments
sorted by: hot top controversial new old
[-] null@piefed.nullspace.lol 7 points 1 month ago

This is bait.

And I'm ready to fish

[-] Fisch@discuss.tchncs.de 6 points 1 month ago

Currently using zsh but I installed fish yesterday to try it out because I'm thinking of switching. All the zsh plugins I have are basically just replicating what fish has by default anyway and fish might do it better.

[-] null@piefed.nullspace.lol 6 points 1 month ago

Plus, look at your name!

[-] fushuan@lemmy.blahaj.zone 1 points 1 month ago

The other way around, fish was implemented with the most popular zsh plugins in mind.

[-] joyjoy@lemmy.zip 1 points 1 month ago

Just whatever you do, don't ln -s /bin/fish /bin/sh

load more comments (4 replies)
[-] flandish@lemmy.world 1 points 1 month ago

what’s fish got? I’m liking zsh here but am always open to a distraction instead of getting work done. :)

[-] null@piefed.nullspace.lol 1 points 1 month ago

Lovely OOTB defaults. I basically change nothing except the theme.

Autocomplete, git context, etc. The QOL stuff you'd expect.

load more comments (5 replies)
[-] KSPAtlas@sopuli.xyz 1 points 1 month ago
[-] Johnmannesca@lemmy.world 1 points 1 month ago

Misread it as nutshell

[-] umbrella@lemmy.ml 5 points 1 month ago

using friend's computer

open terminal

it's actually windows

[-] DieserTypMatthias@lemmy.ml 1 points 1 month ago

It's actually windows

It's actually not Unix-like.

[-] db0@lemmy.dbzer0.com 4 points 1 month ago

Am I out of the loop? what's wrong with zsh?

[-] three@lemmy.zip 7 points 1 month ago

Classic linux tribalism. Use what you like and don't get involved with these confrontational nerds.

[-] db0@lemmy.dbzer0.com 2 points 1 month ago* (last edited 1 month ago)

I mean, there's some things that became validly toxic due to their developers, example off the top of my head: Reiserfs

[-] three@lemmy.zip 1 points 1 month ago

True, software can call you a slur.

load more comments (1 replies)
load more comments (1 replies)
[-] grue@lemmy.world 4 points 1 month ago

It's permissively-licensed (as opposed to bash, which is GPLv3). Pushing zsh over bash is part of a larger effort by corporations to marginalize copyleft so they can more easily exploit Free Software at the users' expense. Don't fall for it!

[-] ZoteTheMighty@lemmy.zip 2 points 1 month ago

It's better.

[-] mlg@lemmy.world 3 points 1 month ago

Default zsh is just bash, you need to add all the fancy plugins to get it to do cool stuff

fish is for people who don't want to spend the time setting it all up and to just get a shell that has most of the QoL fetaures builtin.

[-] Tangent5280@lemmy.world 2 points 1 month ago

But I'm a compliant little bitch for POSIX daddy

load more comments (4 replies)
[-] Nalivai@lemmy.world 1 points 1 month ago

Fish is for people who like it when sometimes scripts don't work

[-] Azzu@lemmy.dbzer0.com 1 points 1 month ago

Why would sometimes scripts not work? All scripts are executed with bash by default.

[-] floquant@lemmy.dbzer0.com 1 points 1 month ago

No, they are executed according to the shebang on the first line, which is usually bash. If it is missing, it will default to the current shell.

load more comments (1 replies)
load more comments (1 replies)
[-] muusemuuse@sh.itjust.works 3 points 1 month ago

I literally do not notice any difference. If the folders and such get the pretty colors and tab works, I could give a damn.

[-] natecox@programming.dev 2 points 1 month ago

Oh yay, more tribalism.

[-] ErenOnizuka@lemmy.dbzer0.com 1 points 1 month ago

Linux noob here. Can you explain please why I‘d use a different terminal than what my distro provides (bash)?

[-] LorIps@lemmy.world 2 points 1 month ago

I would really recommend you try fish.

It has a lot of nice autocomplete features and handles functions much better than bash. It has a very sensible autoconfig so you can just install and try it.

Zsh can be configured in quite a lot of ways. It's default config is quite similar to bash.

[-] ErenOnizuka@lemmy.dbzer0.com 1 points 1 month ago

What does it autocomplete? Filenames? Bash can do that too, right? I just hit the tab key and it’s written there.

And with functions you mean in scripts? How does it handle functions better?

[-] LorIps@lemmy.world 1 points 1 month ago

Autocompletions in fish also take history into account, which saves you a lot of typing in the long run.

Fish shell script is much more sensibly constructed than bash so it's just much easier to write a script in fish.

[-] ErenOnizuka@lemmy.dbzer0.com 1 points 1 month ago

Thank you for explaining

[-] voodooattack@lemmy.world 1 points 1 month ago

Fish was amazing when I first discovered it, but I found it had too many problems for me to effectively use it. Having to adapt existing bash/zsh scripts was a major problem for me.

So I went the other way around and managed to get all of the Fish features I wanted working under zsh using atuin, starship, and other misc. oh-my-zsh plugins to fill the gaps.

Best part: I used a git-controlled home-manager setup to do it so I can activate my entire environment on a fresh machine/server in minutes after I clone it.

[-] TheTimeKnife@lemmy.world 1 points 1 month ago

Features and default settings, but its really just about preference. They are all good at what they do.

Also im only saying this because it confused me for so long, but shell and terminal are different parts of the same thing. Bash is your shell, its the backend that runs everything you type into your terminal. My computer for example uses my kitty terminal which communicates in bash. You can change both the shell and terminal. Zsh is another shell, so it would change the "shell language" you use to communicate with your terminal.

[-] kartoffelsaft@programming.dev 1 points 1 month ago

There can be a ton of reasons, albeit I personally also just stick with default (for me zsh). In typical linux user fashion I also must tell you that bash and zsh are shells, not terminals.

The two main reasons you'd choose a particular shell is because you prefer it's configurability or syntax. Zsh has a bunch of features that you can enable and you can configure it to behave basically however you want, like adding spelling correction or multiline editing, but it's defaults absolutely suck unless your distro comes with a sensible config. Fish, which another guy here's raved about, goes in basically the opposite direction and is really nice to use out of the box (I haven't used it though). I hear it's technically not a valid /bin/sh substitute like zsh or bash because of syntactic differences, but that'd be a whole other rabbit hole if true.

One other reason can be performance concerns because bash is pretty slow when treated as a programming language, but I'd argue you shouldn't organize your workflow so that bash is a performance bottleneck.

[-] MehBlah@lemmy.world 1 points 1 month ago* (last edited 1 month ago)

/bin/bash and move on with your life.

Edit: Oh no one is looking for a solution. I see.

[-] Chaser@lemmy.zip 1 points 1 month ago
load more comments
view more: next ›
this post was submitted on 12 Jan 2026
17 points (87.0% liked)

linuxmemes

30448 readers
133 users here now

Hint: :q!


Sister communities:


Community rules (click to expand)

1. Follow the site-wide rules

2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack users for any reason. This includes using blanket terms, like "every user of thing".
  • Don't get baited into back-and-forth insults. We are not animals.
  • Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry will not be tolerated.
  • 3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn, no politics, no trolling or ragebaiting.
  • Don't come looking for advice, this is not the right community.
  • 4. No recent reposts
  • Everybody uses Arch btw, can't quit Vim, <loves/tolerates/hates> systemd, and wants to interject for a moment. You can stop now.
  • 5. 🇬🇧 Language/язык/Sprache
  • This is primarily an English-speaking community. 🇬🇧🇦🇺🇺🇸
  • Comments written in other languages are allowed.
  • The substance of a post should be comprehensible for people who only speak English.
  • Titles and post bodies written in other languages will be allowed, but only as long as the above rule is observed.
  • 6. (NEW!) Regarding public figuresWe all have our opinions, and certain public figures can be divisive. Keep in mind that this is a community for memes and light-hearted fun, not for airing grievances or leveling accusations.
  • Keep discussions polite and free of disparagement.
  • We are never in possession of all of the facts. Defamatory comments will not be tolerated.
  • Discussions that get too heated will be locked and offending comments removed.
  •  

    Please report posts and comments that break these rules!


    Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't remove France.

    founded 2 years ago
    MODERATORS