zsh or fish for an intermediate Linux user?

zaphodb2002@sh.itjust.works to Linux@lemmy.ml – 46 points –

So I've been using Linux now for a while, and am looking to migrate my dev environment to vim and spend more time in the command line. I'm fairly comfortable with bash but by no means an expert. I've used zsh with some minor customization but just recently learned about fish. I'd love to hear people's opinions.

66

I use fish because I have better things to do than tweak my shell configuration and debug shell plugins.

When I tried oh-my-zsh and prezto (I think?) they came with tons of plugins that performed badly and made it hard to get things done (specifically, they ran git status synchronously on every new prompt, which does not work well in a moderately large repo). Fish had similar features but wasn't horribly slow, so I use it.

Same. I've written a fish plugin, but other than that I just fish pretty much stock. It works and just gets out of my way.

I'm also using fish shell, it find it very user friendly and extremely practical. It gathers all the programs options which you can see when pressing Tab and together with the fzf plugin for history and file search it becomes a very smart shell to use.

When you’re working on a remote server you’re probably not going to have fish available.

You're probably not gonna have zsh either, though, but I wouldn't recommend using sh as your shell on your personal dev machine 🤷‍♂️

That's actually a pretty good reason. Currently I own my work environments but that won't always be the case, I'm sure.

I use Fish shell and while it is pretty nice on its own, the fact that it is non-standard does cause problems. Many times you will search for something online and you'll find nice bash results, which either you will have to execute directly in bash or modify to work correctly in Fish.

I don't think all of Fish's design choices are the best, either. But for an OOTB experience, it is nicer than either Bash or Zsh.

In those cases, I simply switch to bash, do the deed, switch back.

Let the religious shell wars begin ... again

Only right answer is of course TCSH. Not much documentation and support, ancient but still receives new bugs in 2021 (on Debian), but attackers hate it! (I love it)

My real suggestion is to learn zsh and fish (and bash). Try using them for all your purposes and in the end you will automatically find the one (or more of them) that suits you best and that you like most for your daily tasks.

I like zsh with oh-my-zsh and Powerlevel10k. This gives me a clear indication of which system I am on and remains POSIX-compliant.

The biggest deal breaker for me for shells like fish are the they are not POSIX-compliant and I need to use remote systems regularly. Doesn't make sense to use something with a different syntax to me.

I moved to the fish shell a while ago and I love it, everything I need works OOB. I don't understand people complaining about the different sintax for scripts, this is a non issue, just use #!/bin/bash at the start of your script and it will use bash, or just execute directly with "bash script.sh".

I don't understand people complaining about the different sintax for scripts, this is a non issue...

I have a two major reasons:

  • Adding another shell syntax adds unnecessary cognitive load and context switching. If I were to use a non-POSIX shell, I'd have to remember another, highly domain-specific language, in addition to BASH/ZSH/SH and need to context switch when writing and debugging shell scripts. Instead, I can spend the mental energy on writing code, and learning new languages and tools.
  • Most remote *nix systems run BASH or another POSIX-compliant shell. This introduces additional context switching when administering or debugging remotely.

If you’re looking for a nicer shell for personal use, fish is pretty nice

If you want to run arbitrary scripts and deal with setup scripts from coworkers etc, you’ll want to fall back to zsh/bash regularly, though

If you’re fine with understanding when your shell is the problem, fish is nice for interactive use

I use Linux for work and I'm pretty much fully in bash. What's the benefit of changing to a different shell? Will all my scripts still work?

Power, convenience, customizability

Pretty much the same reasons you use Linux at all

I made myself this question and jumped to fish and never came back to bash. I now use mostly the terminal for most things together with ranger.

If you decide to jump to fish install fish + fisherman + fzf

Fisherman for installing themes and plugins and with it you install the fzf plugin. I also have the tide theme which is pretty nice.

PS. Bash scripts still run as bash so there is no conflict.

On Mac, zsh is default.

I use zsh with zinit (with turbo mode) or zgenom.

Zsh quick start kit and z4human (created by powerlevel10k author) are great starts if you do not want to invest on configuring zsh.

Zsh is just bash with plugins and stuff, so regular bash scripts work. fish, as I understand, uses its own language.

If you have #!/bin/bash on top of your scripts, they will use bash.

Bash code is not safe to run as if it were Zsh, and Zsh has language features Bash doesn't. They are different languages.

That's right. zsh is POSIX compliant while fish is not. That's the reason I switched to zsh from fish.

If you want you can install starship, which provides a lot of the nifty prompt customization I see in other people's zsh configs. I've been using it with bash for a few months now and like it a lot.

I use tide with fish and I personally prefer it over starship.

Thanks for pointing me at tide. I always used the pure prompt but tide looks like pure on steroids.

Also look into the fzf plugin for fish. It’s the other plugin I use.

Fzf doesn't need fish, though. I use it with bash.

Sure, fzf is fzf. This is a plugin for fish that integrates fzf with fish.

@Thaurin @zitronen what does it do in addition? For me fzf already replaces some of the keybinds to do history search, directory search, etc. What else is available on the plugin?

Still a bash lover after 24 years at the command line. 😄

Genuinly asking, what is wront/lacking in bash?

I use zsh with a few customisations. I’ve used fish but it’s sometimes slow so I just stick to zsh.

ZSH, ZSH, ZSH! Fish is not POSIX compliant, meaning most shell scripts won't work and it has its own special snowflake syntax.

Also, don't use Oh-My-ZSH! Just use the package manager in your system.

you can always run scripts with the shell they were written for (and you can even argue that people writing scripts should always set the shebang)

If I have to switch shells all the time when another shell, zsh has the same functionality as fish, without the switching around, I'll use that. Not to mention fish causes flatpak to not add Flatpaks to the app menu until restart. Environment variable messes. If I have to install a bunch of other stuff to make fish work, vs make zsh work more nicely, I'll pick the 2nd one.

meaning most shell scripts won't work

What do you even mean? I run my bash script on Fish shell. No problem. Just need indicate the shebang at the top of the shell script.

unless you want to run zsh/bash commands in cli mode - that's a different story.

An old sysadm introduced me to zsh 28 years ago now and I've used it as my primary shell ever since. It's tried, tested and most certainly works well.

I tried fish and liked it.

But compatibility to bash is not great.

So I changed to zsh with zsh quick start kit (zgen and later zgenom). Zsh has more more community, frameworks and plugins.

Now I roll my own zsh config using zinit with turbo.

I use fish with the bass plugin for any time I need to work with bash scripts.

bash with ble.sh! I'm a former fish user, and ble.sh replicates all of fish's quality of life improvements (that I used, at least) and then some, all with a single source command in my .bashrc. And it's still bash at the end of the day, so online resources to tweak and modify it all still work.

I daily drive Linux mint and love using fish, I do have a custom built NAS but I rarely ssh into it, so I'm not limited by it, but as some mention that if you're a dev and do a lot of SSH/remote controlling then it might work against you if you form too many habits.

I used zsh for ages but switched to fish a few months ago because its navigation features are amazingly smooth and seamless. I generally write scripts in sh or python so navigation is the most important part of the terminal for me. Fish has bash compatibility plugins if you need them, but the main reason I use it is that it's the nicest feeling shell to use for getting around in a terminal that I've found so far.

That counts for a lot.

I learned Fish by helping someone else in a chat. There's a lot of cool things, and I think it's an excellent shell. Fish is an excellent choice for a shell.

Zsh is a much more featureful language (with globbing/subscript/PE flags, native floating point arithmetic, the whole man zshmodules), which doesn't necessarily make it a better shell. But I like those features, and I find it to be a natural choice to write more complex programs which normally would be a code smell for Bash.

The plugin ecosystem for is much larger than Fish's as well.

All of those are good choices with different trade-offs. I am a long time zsh user but I'd say stick with bash until you feel strongly enough about your preferences to evaluate the other options for yourself.

Depending on your use case. I personally use zsh and oh-my-zsh but you can always customize bash to be more like zsh, have auto completion, etc.

I’d like to agree with most of the people here and say that while I have a great local zsh setup, 95% of the time I’m working on some other system in the cloud that only exists for a few days at a time and will only ever have bash and basic vim-enhanced, so I never really get to use my oh-my-zsh setup.

I use a mix of fish and nu depending on what I'm doing. NuShell is great but still pretty buggy, so I use fish as my default and switch to it when I want to use its features.

I still write most of my stuff in bash however since servers I work with typically only have bash, and so are potential coworkers.

But locally I see no point restricting myself to a POSIX compatible shell, especially for interactive shells. The easier and faster it is to use and customize the better. Being able to parse and use JSON and CSV and other things easily and natively right in the shell is a major quality of life improvement!

Why not use Perl or python for scripting tasks? Bash script is terrible imo.

I mean, I guess technically Perl could do but it wont earn you any favors from your coworkers.

I do use Python for higher level stuff but I don't see a point to go Python when you're just gonna call 20 subprocess anyway to do like apt update apt dist-upgrade apt install wget this untar this rsync this. Especially when you can't even assume you're going to have Python to provision the box.

That's why I included Perl, it is always there. Just don't code as if you were in the nineties and Perl is a perfectly legitimate language, even more so for shell tasks. Bad and good doesn't depend so much on the language but the coder.

Bad and good doesn't depend so much on the language but the coder.

IMO there's also a component where a good coder will pick the best suited language for the task, but will also pick something that the rest of their (potentially less skilled, junior or even intern) team won't be scared away by.

If you're mostly just running a few commands and writing to a bunch of files, bash is great and does that in almost no code and remains quite readable. Like, a backup script for a database is essentially a bash one-liner. I'm sure it's also easy in a Perl script, but just seeing a .pl file can scare some admins whereas they know what to expect if they see a .sh.

Then there's also a component of, what does the company uses. If the company runs Ruby apps, then I'd write tooling in Ruby. If the company runs PHP apps, some of the tooling will be written in PHP.

It's very circumstantial in the end. I'll definitely whip up some Perl if it's advantageous, but really most of the time it's just wrapping an rsync or whatever, and at work it's usually just some glue or bootstrapping something like Puppet or Ansible. Not a fan of those personally but it's a safe bet for my role and industry.

On the personal side, I tend to turn to what's my favorite language at the moment, so lately I've been practicing my Rust.

Fish is really good without any configuration, but it's not POSIX-compatible. Zsh can get very good as well, and it works with most shell scripts, but it requires some setup. I started with fish then moved to zsh.

Fish, it just works. Customization is super simple and has a really nice webui if you're into that sort of stuff. Plugins are easy to install with fisher. Out of the box it's very ergonomic and you don't have to deal with tons of scripts that may need debugging. Custom shell functions take 2 seconds to set up. Scripts use a shebang to specify the shell they run in, so you shouldn't have any issues with that. Whenever I absolutely need to run a command with bash, I just switch to it, do what I need to do, and hop back to fish. Highly recommend, haven't looked back since I started using it a few years ago :)

Whoops, I forgot about this tab and now I'm late to the fish party 😅 I used to use customized zsh but have since switched to fish and it's basically everything I had to work to get zsh to do, only without any of the work. It just is what I want from a shell, I just grab it from the nearest package manager and off I go.

...Unfortunately for fish, that's made me curious that there may be "another fish" out there somewhere that's what I'd be struggling to turn fish into if I knew any better than I do now 🤣

I use zsh with prezto plugins which makes it behave exactly like fish, except it works with batch scripts. It's perfect

Are you in a tech support role at work? If so are you supporting Linux boxes, either servers or desktops? If yes then stick with BASH and learn VI - not because it is better, but because it comes with almost every distro (a small number install nano instead). If not, try out all the new stuff and see what suits you.

Been using fish for awhile. I don’t need much more than smart autocomplete (which is built in) and some small QOL plugins. Sometimes it sucks because the syntax is slightly different than bash or zsh so you will have to get used to that.

So, initially I stuck to bash and tried to get improved functionality through ble.sh etc. However, for reasons unknown to me, it always seemed to be a buggy mess that was prone to break. Eventually I switched after breaking one last time, where I only had installed ble.sh on a fresh/stock bash; which was the primary contributor that made bash bearable. So if I couldn't use ble.sh, I had no reason to stick to it.

When faced with the choice of where to go next, I quickly dismissed fish for not being POSIX-compliant. Furthermore, as bash is standard on Linux, so too is zsh standard on macOS. And that enables it to have legs beyond fish. However I also kept fish in mind as somewhat of a last resort if all else failed.

So I began venturing into zsh and was obviously overwhelmed by the myriad of plugins and plugin-managers. People generally go out and somehow stick to ohmyzsh, however it was clearly poorly managed and couldn't quite deal with the feature-creep in an elegant way.

Many plugin-managers have come out over the years as alternatives that promised to resolve those issues. However, while some of them succeeded initially, they weren't able to keep that up throughout their lifespan.

When I almost lost hope and had started to gravitate towards learning how I should manage my plugins on my own without any plugin-managers I stumbled upon ZSH Quickstart Kit. Which is a project that's clearly well-maintained and offered must-have functionality like automatically updating the the plugin-manager, plugins and more while still trying to maintain a high standard of reliability, performance, customization and minimalism. So obviously I had been sold on it and the rest has been history.

Ultimately it's for you to decide whichever one of the two suits you best. But if you gave zsh a try and wasn't quite sold on ohmyzsh or any of the other plugin-managers out there, then perhaps consider ZSH Quickstart Kit.

Both are good (and Bash too). Try them all and choose the best one depending on the context. For example, on my main PC I use fish with a few plugins (and fisher as the manager), but I'd never use it on a server due to it not being POSIX compliant.

Don't know how much "minor customization" is to you, but perhaps try adding some major stuff before giving up on it. Personally I started with prezto, customised it, and added a few things like fzf. Fish is probably nice too but I haven't got around to giving it a fair try.